TextRange2.Lines Property
Returns the specified subset of text lines. Read-only.
Namespace: Microsoft.Office.Core
Assembly: office (in office.dll)
Syntax
'Declaration
ReadOnly Property Lines ( _
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.Lines(Start, Length)
TextRange2 this[
int Start,
int Length
] { get; }
Parameters
Start
Type: System.Int32The first line in the returned range.
Length
Type: System.Int32The number of lines 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 line and ends with the last paragraph in the specified range.
If Start is specified but Length is omitted, the returned range contains one line.
If Length is specified but Start is omitted, the returned range starts with the first line in the specified range.
If Start is greater than the number of lines in the specified text, the returned range starts with the last line in the specified range.
If Length is greater than the number of lines from the specified starting line to the end of the text, the returned range contains all those lines.