Public Member Functions | |
| HRESULT | _NewEnum ([out, retval] IUnknown oppNewEnum) |
| This standard property returns the enumerator object for the collection. | |
| HRESULT | Add ([in] EnumDSSTransactionType iTransactionType) |
| Add a new transaction type to the collection. | |
| HRESULT | Clear () |
| Empty the collection. | |
| HRESULT | Count ([out, retval] Int32 *opCount) |
| The number of transaction types in the collection. | |
| HRESULT | Item ([in] Int32 iIndex,[out, retval] EnumDSSTransactionType *opTransactionType) |
| Return the transaction type at the given index from the collection. | |
| HRESULT | Remove ([in] EnumDSSTransactionType iTransactionType) |
| Remove an existing transaction type from the collection. | |
|
|
This standard property returns the enumerator object for the collection. Calling methods on the enumerator object retrieves the elements of the collection as variants.
|
|
|
Add a new transaction type to the collection. Since the collection has set semantics each transaction type can appear at most once in the collection. Subsequent attempts to add a transaction type that already exists in the collection will be ignored.
|
|
|
Empty the collection.
|
|
|
The number of transaction types in the collection.
|
|
||||||||||||
|
Return the transaction type at the given index from the collection. The first element in the collection has index 1.
|
|
|
Remove an existing transaction type from the collection. Attempts to remove a transaction type that is not in the collection will be ignored.
|