'Declaration Public Sub InsertItem( _ ByVal paragraph As Paragraph, _ ByVal level As Integer, _ Optional ByVal index As Nullable(Of Integer) _ )
'Usage Dim instance As List Dim paragraph As Paragraph Dim level As Integer Dim index As Nullable(Of Integer) instance.InsertItem(paragraph, level, index)
Parameters
- paragraph
- The Paragraph that will be inserted in the List.
- level
- The level at which the Paragraph will be added.
Note that levels usually start at 0. - index
- The index corresponding to the Paragraph's insertion point.
If this parameter is null, the Paragraph will be added at the end of the specified level.