Description
This interface is new at ArcGIS 9.3.
Members
Name | Description | |
---|---|---|
Add | Adds a point. | |
Count | The point count. | |
Element | Returns the point at the specified position. | |
Insert | Adds a point at the specified position. | |
Remove | Removes the point at the specified position. | |
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 |