Provides access to members that control 64-bit long arrays.
Members
| Name | Description | |
|---|---|---|
![]()  | 
Add | Adds an element to the array. | 
![]()  | 
Count | The number of elements in the array. | 
![]()  | 
Element | An element in the array. | 
![]()  | 
Insert | Inserts an element to the array. | 
![]()  | 
Remove | Removes an element from the array. | 
![]()  | 
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. | 


