Provides access to the ItemInfos Interface.
Members
Name | Description | |
---|---|---|
Add | Adds an ItemInfo to the array. | |
Count | The ItemInfo count. | |
Element | The ItemInfo at the specified position. | |
Insert | Adds a ItemInfo at the specified position. | |
Remove | Removes the ItemInfo at the specified position. | |
RemoveAll | Removes all ItemInfos. |
IItemInfos.Add Method
Adds an ItemInfo to the array.
Public Sub Add ( _
ByVal ItemInfo As IItemInfo _
)
public void Add (
IItemInfo ItemInfo
);
IItemInfos.Count Property
The ItemInfo count.
Public ReadOnly Property Count As Integer
public int Count {get;}
IItemInfos.Element Property
The ItemInfo at the specified position.
Public Function get_Element ( _
ByVal Index As Integer _
) As IItemInfo
public IItemInfo get_Element (
int Index
);
IItemInfos.Insert Method
Adds a ItemInfo at the specified position.
Public Sub Insert ( _
ByVal Index As Integer, _
ByVal ItemInfo As IItemInfo _
)
public void Insert (
int Index,
IItemInfo ItemInfo
);
IItemInfos.Remove Method
Removes the ItemInfo at the specified position.
Public Sub Remove ( _
ByVal Index As Integer _
)
public void Remove (
int Index
);
IItemInfos.RemoveAll Method
Removes all ItemInfos.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
Classes that implement IItemInfos
Classes | Description |
---|---|
ItemInfos | An array of ItemInfo objects. |