Run Konstruktoren

Definition

Initialisiert eine neue Instanz der Run-Klasse.

Überlädt

Run()

Initialisiert eine neue Standardinstanz der Run-Klasse.

Run(String)

Initialisiert eine neue Instanz der Run-Klasse und übernimmt eine bestimmte Zeichenfolge als ursprünglichen Inhalt des Lauftexts.

Run(String, TextPointer)

Initialisiert eine neue Instanz der Run-Klasse und übernimmt eine angegebene Zeichenfolge als ursprünglichen Inhalt des Lauftexts sowie einen TextPointer, der eine Einfügeposition für den Lauftext angibt.

Run()

Initialisiert eine neue Standardinstanz der Run-Klasse.

public:
 Run();
public Run ();
Public Sub New ()

Gilt für:

Run(String)

Initialisiert eine neue Instanz der Run-Klasse und übernimmt eine bestimmte Zeichenfolge als ursprünglichen Inhalt des Lauftexts.

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)

Parameter

text
String

Eine Zeichenfolge, die den ursprünglichen Inhalt des Run-Objekts angibt.

Beispiele

Im folgenden Beispiel wird die Verwendung dieses Konstruktors veranschaulicht.

Run textRun = new Run("The text contents of this text run.");
Dim textRun As New Run("The text contents of this text run.")

Gilt für:

Run(String, TextPointer)

Initialisiert eine neue Instanz der Run-Klasse und übernimmt eine angegebene Zeichenfolge als ursprünglichen Inhalt des Lauftexts sowie einen TextPointer, der eine Einfügeposition für den Lauftext angibt.

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)

Parameter

text
String

Eine Zeichenfolge, die den ursprünglichen Inhalt des Run-Objekts angibt.

insertionPosition
TextPointer

Ein TextPointer, der eine Einfügeposition angibt, an der der Lauftext nach dem Erstellen eingefügt werden soll, oder null, wenn keine automatische Einfügung erfolgen soll.

Beispiele

Im folgenden Beispiel wird die Verwendung dieses Konstruktors veranschaulicht.

// 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)

Gilt für: