List コンストラクター

定義

List クラスの新しいインスタンスを初期化します。

オーバーロード

List()

List クラスの新しい空のインスタンスを初期化します。

List(ListItem)

指定した List オブジェクトを新しい ListItem の初期コンテンツとして受け取って、List クラスの新しいインスタンスを初期化します。

List()

List クラスの新しい空のインスタンスを初期化します。

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

適用対象

List(ListItem)

指定した List オブジェクトを新しい ListItem の初期コンテンツとして受け取って、List クラスの新しいインスタンスを初期化します。

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

パラメーター

listItem
ListItem

新しい ListItem の初期コンテンツを指定する List オブジェクト。

次の例では、このコンストラクターの使用方法を示します。

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

適用対象