Method of IRange
Checks if position is inside of range (greater or equal start and less than end position)
var pbResult = Range.IsInside(pPosition);
==== Visual Basic Script ====
pbResult = Range.IsInside pPosition
==== C++ ====
VARIANT_BOOL bResult; HRESULT hr = Range.IsInside(pPosition, &bResult);
===== See Also ===== IRange