IItemTemplateArray Interface

Provides access to members that control an item template array.

Members

Name Description
Method Add Adds an item template.
Read-only property Count The property count.
Read-only property Element Returns the item template at the specified position.
Method Insert Adds an item template at the specified position.
Method Remove Removes the item template at the specified position.
Method RemoveAll Removes all item templates.

IItemTemplateArray.Add Method

Adds an item template.

Public Sub Add ( _
    ByVal pItemTemplate As IItemTemplate _
)
public void Add (
    IItemTemplate pItemTemplate
);

IItemTemplateArray.Count Property

The property count.

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

IItemTemplateArray.Element Property

Returns the item template at the specified position.

Public Function get_Element ( _
    ByVal Index As Integer _
) As IItemTemplate
public IItemTemplate get_Element (
    int Index
);

IItemTemplateArray.Insert Method

Adds an item template at the specified position.

Public Sub Insert ( _
    ByVal Index As Integer, _
    ByVal pItemTemplate As IItemTemplate _
)
public void Insert (
    int Index,
    IItemTemplate pItemTemplate
);

IItemTemplateArray.Remove Method

Removes the item template at the specified position.

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

IItemTemplateArray.RemoveAll Method

Removes all item templates.

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

Classes that implement IItemTemplateArray

Classes Description
ItemTemplateArray An array of item templates.

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