Function CSPVarArray::Copy()
Description:
Copies the content of a variant array to this one.
 |
Prototype:
void Copy(const CSPVarArray& VarArray);
Arguments:
- const CSPVarArray& VarArray [IN]
The variant array to be copied
Return value:
No return value (void).
Remarks:
Any variants contained in this object will be discarded and the array will be resized appropriately to fit the copied variants.
Examples:
CSPVarArray Array1, Array2; ... Array1.Copy( Array2 );
See also:
member function operator = (), Add(), Attach()
|
|