Provides access to the IPolygonArray Interface.
Members
Name | Description | |
---|---|---|
Add | Adds a polygon. | |
Count | The polygon count. | |
Element | The polygon at the specified position. | |
Insert | Adds a polygon at the specified position. | |
Remove | Removes the polygon at the specified position. | |
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. |