Description
This interface is new at ArcGIS 9.3.
Members
| Name | Description | |
|---|---|---|
![]()  | 
Add | Adds a geometry. | 
![]()  | 
Count | The geometry count. | 
![]()  | 
Element | Returns the geometry at the specified position. | 
![]()  | 
Insert | Adds a geometry at the specified position. | 
![]()  | 
Remove | Removes the geometry at the specified position. | 
![]()  | 
RemoveAll | Removes all geometries. | 
IGeometryArray.Add Method
Adds a geometry.
Public Sub Add ( _
    ByVal g As IGeometry _
)
public void Add (
    IGeometry g
);
IGeometryArray.Count Property
The geometry count.
Public ReadOnly Property Count As Integer
public int Count {get;}
IGeometryArray.Element Property
Returns the geometry at the specified position.
Public Function get_Element ( _
    ByVal Index As Integer _
) As IGeometry
public IGeometry get_Element (
    int Index
);
IGeometryArray.Insert Method
Adds a geometry at the specified position.
Public Sub Insert ( _
    ByVal Index As Integer, _
    ByVal g As IGeometry _
)
public void Insert (
    int Index,
    IGeometry g
);
IGeometryArray.Remove Method
Removes the geometry at the specified position.
Public Sub Remove ( _
    ByVal Index As Integer _
)
public void Remove (
    int Index
);
IGeometryArray.RemoveAll Method
Removes all geometries.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
Classes that implement IGeometryArray
| Classes | Description | 
|---|---|
| GeometryArray | 

