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 | Retrieves the element in the array (index is 0-based). |
![]() |
RemoveAll | Removes all elements from the array. |
IRgbArray.Add Method
Adds an element to the array.
Public Sub Add ( _
ByRef pElement As RGB32 _
)
public void Add (
ref RGB32 pElement
);
IRgbArray.Count Property
The number of elements in the array.
Public ReadOnly Property Count As Integer
public int Count {get;}
IRgbArray.Element Property
Retrieves the element in the array (index is 0-based).
Public Function get_Element ( _
ByVal Index As Integer _
) As RGB32
public RGB32 get_Element (
int Index
);
IRgbArray.RemoveAll Method
Removes all elements from the array.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
Classes that implement IRgbArray
| Classes | Description |
|---|---|
| RgbArray | Esri RgbArray object. |

