IPolylineArray Interface

Provides access to the IPolylineArray Interface.

Description

This interface is new at ArcGIS 9.3.

Members

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

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