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