共用方式為


ListItem 建構函式

定義

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

多載

ListItem()

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

ListItem(Paragraph)

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

ListItem()

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

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

適用於

ListItem(Paragraph)

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

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

參數

paragraph
Paragraph

Paragraph 物件,用來指定新 ListItem 的初始內容。

範例

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

// This line uses the ListItem constructor to create a new ListItem
// and initialize it with the specified Paragraph.
ListItem lix = new ListItem(new Paragraph(new Run("ListItem text...")));
// This line uses the List constructor to create a new List and populate
// it with the previously created ListItem.
List listx = new List(lix);
' This line uses the ListItem constructor to create a new ListItem
' and initialize it with the specified Paragraph.
Dim lix As New ListItem(New Paragraph(New Run("ListItem text...")))
' This line uses the List constructor to create a new List and populate
' it with the previously created ListItem.
Dim listx As New List(lix)

適用於