Allows random access to individual nodes within the collection. Syntax Parametersobject.item(index) Return Value Object. Returns IBarcode. Returns Null if the index is out of range.Example
|
||
Returns the next node in the collection. Syntax Return Valueobject.nextNode() Object. Returns IBarcode. Returns Null if there is no next node.Remarks The first call to nextNode returns the first node in the list. This method returns Null when the current node is the last node or there are no items in the list. The iterator can be reset by calling the reset method.Example [Script]
[Visual Basic]
[C/C++]
|
||
Resets the iterator. Syntax Return Valueobject.reset() No return value.Remarks This method reinitializes the iterator to point before the first node in the IBarcodeList so that the next call to nextNode returns the first item in the list. |