ListItem Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Initialise une nouvelle instance de la classe ListItem.
Surcharges
ListItem() |
Initialise une nouvelle instance vide de la classe ListItem. |
ListItem(Paragraph) |
Initialise une nouvelle instance de la classe ListItem, en prenant un objet Paragraph spécifié comme contenu initial du nouveau ListItem. |
ListItem()
Initialise une nouvelle instance vide de la classe ListItem.
public:
ListItem();
public ListItem ();
Public Sub New ()
S’applique à
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)
Paramètres
Exemples
L’exemple suivant illustre l’utilisation de ce constructeur.
// 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)