Provides access to members that control an item URI array.
Members
Name | Description | |
---|---|---|
Add | Adds an item template. | |
Count | The property count. | |
Element | Returns the item template at the specified position. | |
Insert | Adds an item template at the specified position. | |
Remove | Removes the item template at the specified position. | |
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. |