Function CSPVarArray::Add()
Description:
Appends the content of a variant array at the end of the content of this object.
 |
Prototype:
void Add(const CSPVarArray& VarArray);
Arguments:
- const CSPVarArray& VarArray [IN]
The variant array to be added.
Return value:
No return value (void).
Remarks:
The array will appropriately grow to fit the added data.
Examples:
CSPVarArray Array1, Array2; ... Array1.Add( Array2 );
See also:
member function operator += (), Copy(), Attach()
|
|