List Construtores
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Inicializa uma nova instância da classe List.
Sobrecargas
List() |
Inicializa uma nova instância vazia da classe List. |
List(ListItem) |
Inicializa uma nova instância da classe List, usando um objeto ListItem especificado como o conteúdo inicial do novo List. |
List()
Inicializa uma nova instância vazia da classe List.
public:
List();
public List ();
Public Sub New ()
Aplica-se a
List(ListItem)
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)
Parâmetros
Exemplos
O exemplo a seguir demonstra o uso desse construtor.
// 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)