ILongLongArray Interface

Provides access to members that control 64-bit long arrays.

Members

Name Description
Method Add Adds an element to the array.
Read-only property Count The number of elements in the array.
Read/write property Element An element in the array.
Method Insert Inserts an element to the array.
Method Remove Removes an element from the array.
Method RemoveAll Removes all elements from the array.

ILongLongArray.Add Method

Adds an element to the array.

Public Sub Add ( _
    ByVal Element As Long _
)
public void Add (
    long Element
);

ILongLongArray.Count Property

The number of elements in the array.

Public ReadOnly Property Count As Integer
public int Count {get;}

ILongLongArray.Element Property

An element in the array.

Public Function get_Element ( _
    ByVal Index As Integer _
) As Long
Public Sub set_Element ( _
    ByVal Index As Integer, _
    ByVal pElement As Long _
)
public long get_Element (
    int Index
);
public void set_Element (
    int Index,
    long pElement
);

ILongLongArray.Insert Method

Inserts an element to the array.

Public Sub Insert ( _
    ByVal Index As Integer, _
    ByVal Element As Long _
)
public void Insert (
    int Index,
    long Element
);

ILongLongArray.Remove Method

Removes an element from the array.

Public Sub Remove ( _
    ByVal Index As Integer _
)
public void Remove (
    int Index
);

ILongLongArray.RemoveAll Method

Removes all elements from the array.

Public Sub RemoveAll ( _
)
public void RemoveAll (
);

Classes that implement ILongLongArray

Classes Description
LongLongArray An object for holding a 64-bit Long array.

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