Paragraph Konstruktoren

Definition

Initialisiert eine neue Instanz der Paragraph-Klasse.

Überlädt

Paragraph()

Initialisiert eine neue leere Instanz der Paragraph-Klasse.

Paragraph(Inline)

Initialisiert eine neue Instanz der Paragraph-Klasse und übernimmt ein bestimmtes Inline-Objekt als ursprünglichen Inhalt.

Paragraph()

Initialisiert eine neue leere Instanz der Paragraph-Klasse.

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

Gilt für:

Paragraph(Inline)

Initialisiert eine neue Instanz der Paragraph-Klasse und übernimmt ein bestimmtes Inline-Objekt als ursprünglichen Inhalt.

public:
 Paragraph(System::Windows::Documents::Inline ^ inline);
public Paragraph (System.Windows.Documents.Inline inline);
new System.Windows.Documents.Paragraph : System.Windows.Documents.Inline -> System.Windows.Documents.Paragraph
Public Sub New (inline As Inline)

Parameter

inline
Inline

Ein Inline-Objekt, mit dem der ursprüngliche Inhalt des neuen Paragraph angegeben wird.

Beispiele

Im folgenden Beispiel wird die Verwendung dieses Konstruktors veranschaulicht.

// A child Inline element for the new Paragraph element.
Run runx = new Run("Text to be hosted in the new paragraph...");

// After this line executes, the new element "parx"
// contains the specified Inline element, "runx".
Paragraph parx = new Paragraph(runx);
' A child Inline element for the new Paragraph element.
Dim runx As New Run("Text to be hosted in the new paragraph...")

' After this line executes, the new element "parx"
' contains the specified Inline element, "runx".
Dim parx As New Paragraph(runx)

Gilt für: