Provides access to the IPolylineArray Interface.
Description
This interface is new at ArcGIS 9.3.
Members
Name | Description | |
---|---|---|
Add | Adds a polyline. | |
Count | The polyline count. | |
Element | The polyline at the specified position. | |
Insert | Adds a polyline at the specified position. | |
Remove | Removes the polyline at the specified position. | |
RemoveAll | Removes all polylines. |
IPolylineArray.Add Method
Adds a polyline.
Public Sub Add ( _
ByVal pPolyline As IPolyline _
)
public void Add (
IPolyline pPolyline
);
IPolylineArray.Count Property
The polyline count.
Public ReadOnly Property Count As Integer
public int Count {get;}
IPolylineArray.Element Property
The polyline at the specified position.
Public Function get_Element ( _
ByVal Index As Integer _
) As IPolyline
public IPolyline get_Element (
int Index
);
IPolylineArray.Insert Method
Adds a polyline at the specified position.
Public Sub Insert ( _
ByVal Index As Integer, _
ByVal Polyline As IPolyline _
)
public void Insert (
int Index,
IPolyline Polyline
);
IPolylineArray.Remove Method
Removes the polyline at the specified position.
Public Sub Remove ( _
ByVal Index As Integer _
)
public void Remove (
int Index
);
IPolylineArray.RemoveAll Method
Removes all polylines.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
Classes that implement IPolylineArray
Classes | Description |
---|---|
PolylineArray | A collection of Polyline objects. |