IPolygonArray Interface

Provides access to the IPolygonArray Interface.

Members

Name Description
Method Add Adds a polygon.
Read-only property Count The polygon count.
Read-only property Element The polygon at the specified position.
Method Insert Adds a polygon at the specified position.
Method Remove Removes the polygon at the specified position.
Method RemoveAll Removes all polygons.

IPolygonArray.Add Method

Adds a polygon.

Public Sub Add ( _
    ByVal Polygon As IPolygon _
)
public void Add (
    IPolygon Polygon
);

IPolygonArray.Count Property

The polygon count.

Public ReadOnly Property Count As Integer
public int Count {get;}

IPolygonArray.Element Property

The polygon at the specified position.

Public Function get_Element ( _
    ByVal Index As Integer _
) As IPolygon
public IPolygon get_Element (
    int Index
);

IPolygonArray.Insert Method

Adds a polygon at the specified position.

Public Sub Insert ( _
    ByVal Index As Integer, _
    ByVal Polygon As IPolygon _
)
public void Insert (
    int Index,
    IPolygon Polygon
);

IPolygonArray.Remove Method

Removes the polygon at the specified position.

Public Sub Remove ( _
    ByVal Index As Integer _
)
public void Remove (
    int Index
);

IPolygonArray.RemoveAll Method

Removes all polygons.

Public Sub RemoveAll ( _
)
public void RemoveAll (
);

Classes that implement IPolygonArray

Classes Description
PolygonArray A collection of Polygon objects.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.