Selection.InRange(Range) Method

Definition

Determines if the selection to which the method is applied is contained in a specified range.

public:
 bool InRange(Microsoft::Office::Interop::Word::Range ^ Range);
public bool InRange (Microsoft.Office.Interop.Word.Range Range);
abstract member InRange : Microsoft.Office.Interop.Word.Range -> bool
Public Function InRange (Range As Range) As Boolean

Parameters

Range
Range

Required Range object. The range to which you want to compare the selection.

Returns

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.

Applies to