Purpose:
This is the class that is used to represent a parts collection.
Methods:
long cardinality();
LPDISPATCH createIterator();
Creates a iterator to iterate over a collection. The returned LPDISPATCH pointer contains a DXSequentialIteratorDL object.
addElement(VARIANT element);
VARIANT retrieveElementAt(LPDISPATCH where);
Returns the element the iterator is pointing at. The input parameter LPDISPATCH pointer contains a DXSequentialIteratorDL object.
removeElementAt(LPDISPATCH where);
Removes the element the iterator is pointing at. The input parameter LPDISPATCH pointer contains a DXSequentialIteratorDL object.
removeAllElements();
insertElementAt(VARIANT element, LPDISPATCH where);
Adds a new element, after the element the iterator is currently pointing to. The input parameter LPDISPATCH pointer contains a DXSequentialIteratorDL object.
replaceElementAt(VARIANT element, LPDISPATCH where);
Replaces the element the iterator is pointing at. The input parameter LPDISPATCH pointer contains a DXSequentialIteratorDL object.
addMember(LPDISPATCH item, LPDISPATCH member);
Adds an XDO to the specified item. The first input parameter LPDISPATCH pointer contains a DXDDODL object and the second input parameter LPDISPATCH pointer contains a DXBlobDL object.
removeMember(LPDISPATCH item, LPDISPATCH member);
Removes an XDO from the specified item. The first input parameter LPDISPATCH pointer contains a DXDDODL object and the second input parameter LPDISPATCH pointer contains a DXBlobDL object.
(c) Copyright International Business Machines Corporation 1996, 2002. IBM Corp. All rights reserved.