Section Konstruktoren

Definition

Initialisiert eine neue Instanz der Section-Klasse.

Überlädt

Section()

Initialisiert eine neue leere Instanz der Section-Klasse.

Section(Block)

Initialisiert eine neue Instanz der Section-Klasse und übernimmt ein bestimmtes Block-Objekt als ursprünglichen Inhalt des neuen Section.

Section()

Initialisiert eine neue leere Instanz der Section-Klasse.

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

Gilt für:

Section(Block)

Initialisiert eine neue Instanz der Section-Klasse und übernimmt ein bestimmtes Block-Objekt als ursprünglichen Inhalt des neuen Section.

public:
 Section(System::Windows::Documents::Block ^ block);
public Section (System.Windows.Documents.Block block);
new System.Windows.Documents.Section : System.Windows.Documents.Block -> System.Windows.Documents.Section
Public Sub New (block As Block)

Parameter

block
Block

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

Beispiele

Im folgenden Beispiel wird die Verwendung dieses Konstruktors veranschaulicht.

// A child Block element for the new Section element.
Paragraph parx = new Paragraph(new Run("A bit of text content..."));

// After this line executes, the new element "secx"
// contains the specified Block element, "parx".
Section secx = new Section(parx);
' A child Block element for the new Section element.
Dim parx As New Paragraph(New Run("A bit of text content..."))

' After this line executes, the new element "secx"
' contains the specified Block element, "parx".
Dim secx As New Section(parx)

Gilt für: