Interface IGeometryCollection

IGeometryCollection interface

A IGeometryCollection is a IGeometry that is a collection of one or more geometries.

public interface IGeometryCollection : IEnumerable<IGeometry>, IEquatable<IGeometryCollection>, 
    IGeometry

Properties

NameDescription
Count { get; }Gets the number of geometries in this collection.
Item { get; }Gets a IGeometry at the specified index.

Methods

NameDescription
GetPointOnSurface()Finds a point that is guaranteed to be on one of the surfaces in this collection.
ReplacePolygonsByLines()Gets polygons represented as lines of this geometry.
ToEditable()Gets an editable copy of this geometry.
ToLinearGeometry()Gets approximate or equivalent non-curve version of this geometry using the default tolerance.
ToLinearGeometry(double)Gets approximate or equivalent non-curve version of this geometry using the specified tolerance.

See Also