IGeometryArray Interface

Description

This interface is new at ArcGIS 9.3.

Members

Name Description
Method Add Adds a geometry.
Read-only property Count The geometry count.
Read-only property Element Returns the geometry at the specified position.
Method Insert Adds a geometry at the specified position.
Method Remove Removes the geometry at the specified position.
Method 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

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