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)

Применяется к