Indicates if the two geometries intersect in a geometry of lesser dimension.
[Visual Basic .NET] Public Function Crosses ( _ ByVal other As IGeometry _ ) As Boolean
[C#] public bool Crosses ( IGeometry other );
[C++]
HRESULT Crosses(
IGeometry* other,
VARIANT_BOOL* Crosses
);
[C++]Parameters
otherother is a parameter of type IGeometry
Crosses [out, retval] Crosses is a parameter of type VARIANT_BOOL
Product Availability
Description
Two polylines cross if they share only points in common, at least one of which is not an endpoint. A polyline and an polygon cross if they share a polyline or a point (for vertical line) in common on the interior of the polygon which is not equivalent to the entire polyline. Cross is a Clementini operator.
Remarks
Only geometries that support the IRelationalOperator interface can be used as input geometries.
Cross only applies to polyline/polyline, polyline/polygon, or polygon/polyline relations.
If either one of the geometries is empty, the geometries do not cross.
Crosses examples. Only "true" relationships are showed in this picture.