IGeometry.Union

IGeometry.Union method

Unites this geometry and a specified geometry.

public IGeometry Union(IGeometry other)
ParameterTypeDescription
otherIGeometryA geometry to unite with.

Return Value

A geometry that represents a union of this geometry and an argument. The result geometry contains point set that present in this geometry or in 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