Selection.SetRange Method
Sets the starting and ending character positions for the selection.
Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)
Syntax
'Declaration
Sub SetRange ( _
Start As Integer, _
End As Integer _
)
'Usage
Dim instance As Selection
Dim Start As Integer
Dim End As Integer
instance.SetRange(Start, End)
void SetRange(
int Start,
int End
)
Parameters
- Start
Type: System.Int32
Required Integer. The starting character position of the selection.
- End
Type: System.Int32
Required Integer. The ending character position of the selection.
Remarks
Character position values start at the beginning of the story, with the first value being 0 (zero). All characters are counted, including nonprinting characters. Hidden characters are counted even if they're not displayed.
The SetRange method redefines the starting and ending positions of an existing Selection or Range object. This method differs from the Range method, which is used to create a range, given a starting and ending position.