IGeometry.Intersection

IGeometry.Intersection method

Builds an intersection between this geometry and a specified geometry.

public IGeometry Intersection(IGeometry other)
ParameterTypeDescription
otherIGeometryA geometry to compute intersection with.

Return Value

A geometry that represents an intersection of this geometry and an argument. The result geometry contain point set that present in both this geometry and an argument.

Exceptions

exceptioncondition
ArgumentNullExceptionother is null.
ArgumentExceptionOne of the geometries is invalid in such way that operation can not be finished.
ArgumentExceptionSpatialReferenceSystem of geometries are not equivalent. You can use SpatialReferenceSystemTransformation in order to convert geometries to the same spatial reference system.

See Also