共用方式為


Section 建構函式

定義

初始化 Section 類別的新執行個體。

多載

Section()

初始化 Section 類別的新的空執行個體。

Section(Block)

初始化 Section 類別的新執行個體,並將指定的 Block 物件做為新 Section 的初始內容。

Section()

初始化 Section 類別的新的空執行個體。

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

適用於

Section(Block)

初始化 Section 類別的新執行個體,並將指定的 Block 物件做為新 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)

參數

block
Block

Block 物件,用來指定新 Section 的初始內容。

範例

下列範例示範此建構函式的使用方式。

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

適用於