Selection.InRange Method
Determines if the selection to which the method is applied is contained in a specified range.
Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)
Syntax
'Declaration
Function InRange ( _
Range As Range _
) As Boolean
'Usage
Dim instance As Selection
Dim Range As Range
Dim returnValue As Boolean
returnValue = instance.InRange(Range)
bool InRange(
Range Range
)
Parameters
- Range
Type: Microsoft.Office.Interop.Word.Range
Required Range object. The range to which you want to compare the selection.
Return Value
Type: System.Boolean
Remarks
This method returns True if the selection to which the method is applied is contained in the range specified by the Range argument and False if not.
This method determines whether the selection is contained in the specified range by comparing the starting and ending character positions, as well as the story type.