ListItem Konstruktory
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Inicializuje novou instanci ListItem třídy.
Přetížení
ListItem() |
Inicializuje novou prázdnou ListItem instanci třídy. |
ListItem(Paragraph) |
Inicializuje novou instanci ListItem třídy, vezme zadaný Paragraph objekt jako počáteční obsah nového ListItem. |
ListItem()
Inicializuje novou prázdnou ListItem instanci třídy.
public:
ListItem();
public ListItem ();
Public Sub New ()
Platí pro
ListItem(Paragraph)
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)
Parametry
Příklady
Následující příklad ukazuje použití tohoto konstruktoru.
// 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)