scripting:api:range:is-range-intersects

IsRangeIntersects

Method of IRange

Checks if other range intersects range (greater or equal start and less or equal than end position)

var pbResult = Range.IsRangeIntersects(pRange);

==== Visual Basic Script ====

pbResult = Range.IsRangeIntersects pRange

==== C++ ====

VARIANT_BOOL bResult;
HRESULT hr = Range.IsRangeIntersects(pRange, &bResult);

===== See Also ===== IRange