Provides access to members of XyzArray.
Members
| Name | Description | |
|---|---|---|
![]() |
Add | Adds an element to the array. |
![]() |
Count | The number of elements in the array. |
![]() |
Element | Retrieve the element in the array (index is 0-based). |
![]() |
RemoveAll | Removes all elements from the array. |
IXyzArray.Add Method
Adds an element to the array.
Public Sub Add ( _
ByRef pElement As WKSPointZ _
)
public void Add (
ref WKSPointZ pElement
);
IXyzArray.Count Property
The number of elements in the array.
Public ReadOnly Property Count As Integer
public int Count {get;}
IXyzArray.Element Property
Retrieve the element in the array (index is 0-based).
Public Function get_Element ( _
ByVal Index As Integer _
) As WKSPointZ
public WKSPointZ get_Element (
int Index
);
IXyzArray.RemoveAll Method
Removes all elements from the array.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
Classes that implement IXyzArray
| Classes | Description |
|---|---|
| XyzArray | Esri XyzArray object. |

