IPointArray Interface

Description

This interface is new at ArcGIS 9.3.

Members

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

IPointArray.Add Method

Adds a point.

Public Sub Add ( _
    ByVal p As IPoint _
)
public void Add (
    IPoint p
);

IPointArray.Count Property

The point count.

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

IPointArray.Element Property

Returns the point at the specified position.

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

IPointArray.Insert Method

Adds a point at the specified position.

Public Sub Insert ( _
    ByVal Index As Integer, _
    ByVal p As IPoint _
)
public void Insert (
    int Index,
    IPoint p
);

IPointArray.Remove Method

Removes the point at the specified position.

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

IPointArray.RemoveAll Method

Removes all points.

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

Classes that implement IPointArray

Classes Description
PointArray

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