
Gets a paragraph from the collection. In C# this property is the indexer for the ParagraphCollection class.
[C#]
public Paragraph this [int number] { get; }
[Visual Basic]
Public Default ReadOnly Property Item(ByVal number As Integer) As Paragraph
| Parameter | Description | |
| number | Specifies a paragraph number. The first paragraph has the number 1. |
The return value is null, if the paragraph could not be found. Otherwise, it is an object of the type Paragraph.