Gets an item by index.
Namespace:
Aras.IOM
Assembly:
IOM (in IOM.dll) Version: 11.0.0.6296
Syntax
C# |
---|
public Item getItemByIndex(
int index
) |
Visual Basic (Declaration) |
---|
Public Function getItemByIndex ( _
index As Integer _
) As Item |
J# |
---|
public Item getItemByIndex(
int index
) |
JScript |
---|
public function getItemByIndex(
index : int
) : Item |
Parameters
- index
- Type: System..::.Int32
0 based index
Return Value
Found item. Returned item shares its
dom with
this item (i.e. returned item and
this
item
dom property reference the same instance of ArasXmlDocument).
Remarks
Exceptions
Exception | Condition |
---|
System..::.Exception | The instance does not represent a collection of items. |
System..::.IndexOutOfRangeException | Passed index is out of range. |
See Also