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)

适用于