Skip to content

IRgbArray Interface

Provides access to members of XyzArray.

Members

Name Description
Method Add Adds an element to the array.
Read-only property Count The number of elements in the array.
Read-only property Element Retrieves the element in the array (index is 0-based).
Method 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.

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