IItemURIArray Interface

Provides access to members that control an item URI 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.

IItemURIArray.Add Method

Adds an item template.

Public Sub Add ( _
    ByVal pItemURI As IItemURI _
)
public void Add (
    IItemURI pItemURI
);

IItemURIArray.Count Property

The property count.

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

IItemURIArray.Element Property

Returns the item template at the specified position.

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

IItemURIArray.Insert Method

Adds an item template at the specified position.

Public Sub Insert ( _
    ByVal Index As Integer, _
    ByVal pItemURI As IItemURI _
)
public void Insert (
    int Index,
    IItemURI pItemURI
);

IItemURIArray.Remove Method

Removes the item template at the specified position.

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

IItemURIArray.RemoveAll Method

Removes all item templates.

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

Classes that implement IItemURIArray

Classes Description
ItemURIArray An array of item URI objects.

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