TextRange2.Paragraphs Property
Gets the specified subset of text paragraphs. Read-only.
Namespace: Microsoft.Office.Core
Assembly: office (in office.dll)
Syntax
'Declaration
ReadOnly Property Paragraphs ( _
Start As Integer, _
Length As Integer _
) As TextRange2
Get
'Usage
Dim instance As TextRange2
Dim Start As Integer
Dim Length As Integer
Dim value As TextRange2
value = instance.Paragraphs(Start, Length)
TextRange2 this[
int Start,
int Length
] { get; }
Parameters
Start
Type: System.Int32The first paragraph in the returned range.
Length
Type: System.Int32The number of paragraphs to be returned.
Property Value
Type: Microsoft.Office.Core.TextRange2
TextRange2
Remarks
If both Start and Length are omitted, the returned range starts with the first paragraph and ends with the last paragraph in the specified range.
If Start is specified but Length is omitted, the returned range contains one paragraph.
If Length is specified but Start is omitted, the returned range starts with the first paragraph in the specified range.
If Start is greater than the number of paragraphs in the specified text, the returned range starts with the last paragraph in the specified range.
If Length is greater than the number of paragraphs from the specified starting paragraph to the end of the text, the returned range contains all those paragraphs.