ListItem Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the ListItem class.
Overloads
ListItem() |
Initializes a new, empty instance of the ListItem class. |
ListItem(Paragraph) |
Initializes a new instance of the ListItem class, taking a specified Paragraph object as the initial contents of the new ListItem. |
ListItem()
Initializes a new, empty instance of the ListItem class.
public:
ListItem();
public ListItem ();
Public Sub New ()
Applies to
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)
Parameters
Examples
The following example demonstrates usage of this constructor.
// 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)
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.