Purpose:
This class represents a sequential collection.
Methods:
long cardinality();
LPDISPATCH createIterator();
Creates an iterator to iterate over a collection. The returned LPDISPATCH pointer contains a DXSequentialIteratorFed object.
addElement(VARIANT element);
VARIANT retrieveElementAt(LPDISPATCH where);
Returns the element the iterator is pointing at. The input parameter LPDISPATCH pointer contains a DXSequentialIteratorFed object.
removeElementAt(LPDISPATCH where);
Removes the element the iterator is pointing at. The input parameter LPDISPATCH pointer contains a DXSequentialIteratorFed object.
removeAllElements();
insertElementAt(VARIANT element, LPDISPATCH where);
Adds a new element, after the element the iterator currently points to. The input parameter LPDISPATCH pointer contains a DXSequentialIteratorFed object.
replaceElementAt(VARIANT element, LPDISPATCH where);
Replaces the element the iterator points at. The input parameter LPDISPATCH pointer contains a DXSequentialIteratorFed object.
(c) Copyright International Business Machines Corporation 1996, 2002. IBM Corp. All rights reserved.