IItemInfos Interface

Provides access to the ItemInfos Interface.

Members

Name Description
Method Add Adds an ItemInfo to the array.
Read-only property Count The ItemInfo count.
Read-only property Element The ItemInfo at the specified position.
Method Insert Adds a ItemInfo at the specified position.
Method Remove Removes the ItemInfo at the specified position.
Method 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.

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