Run Construtores
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Inicializa uma nova instância da classe Run.
Sobrecargas
Run() |
Inicializa uma nova instância padrão da classe Run. |
Run(String) |
Inicializa uma nova instância da classe Run, usando uma cadeia de caracteres especificada como o conteúdo inicial da sequência de texto. |
Run(String, TextPointer) |
Inicializa uma nova instância da classe Run, usando uma cadeia de caracteres especificada como o conteúdo inicial da sequência de texto e um TextPointer especificando um ponto de inserção para a sequência de texto. |
Run()
Inicializa uma nova instância padrão da classe Run.
public:
Run();
public Run ();
Public Sub New ()
Aplica-se a
Run(String)
Inicializa uma nova instância da classe Run, usando uma cadeia de caracteres especificada como o conteúdo inicial da sequência de texto.
public:
Run(System::String ^ text);
public Run (string text);
new System.Windows.Documents.Run : string -> System.Windows.Documents.Run
Public Sub New (text As String)
Parâmetros
Exemplos
O exemplo a seguir demonstra o uso desse construtor.
Run textRun = new Run("The text contents of this text run.");
Dim textRun As New Run("The text contents of this text run.")
Aplica-se a
Run(String, TextPointer)
Inicializa uma nova instância da classe Run, usando uma cadeia de caracteres especificada como o conteúdo inicial da sequência de texto e um TextPointer especificando um ponto de inserção para a sequência de texto.
public:
Run(System::String ^ text, System::Windows::Documents::TextPointer ^ insertionPosition);
public Run (string text, System.Windows.Documents.TextPointer insertionPosition);
new System.Windows.Documents.Run : string * System.Windows.Documents.TextPointer -> System.Windows.Documents.Run
Public Sub New (text As String, insertionPosition As TextPointer)
Parâmetros
- insertionPosition
- TextPointer
Um TextPointer que especifica uma posição na qual inserir a sequência de texto depois que ela é criada ou null
para nenhuma inserção automática.
Exemplos
O exemplo a seguir demonstra o uso desse construtor.
// Create a new, empty paragraph to host the text run.
Paragraph par = new Paragraph();
// Get a TextPointer for the end of content in the paragraph.
TextPointer insertionPoint = par.ContentEnd;
// This line will create a new text run, initialize it with the supplied string,
// and insert it at the specified insertion point (which happens to be the end of
// content for the host paragraph).
Run textRun = new Run("The text contents of this text run.", insertionPoint);
' Create a new, empty paragraph to host the text run.
Dim par As New Paragraph()
' Get a TextPointer for the end of content in the paragraph.
Dim insertionPoint As TextPointer = par.ContentEnd
' This line will create a new text run, initialize it with the supplied string,
' and insert it at the specified insertion point (which happens to be the end of
' content for the host paragraph).
Dim textRun2 As New Run("The text contents of this text run.", insertionPoint)