|
CreateElement
Creates a new array element at the specified position.
bool CreateElement(
|
Parameters
index
[in] Position in which you want to create a new element.
Return Value
true - successful, false - cannot create an element.
Note
Method CreateElement (int) in class CArrayObj always returns false and does not perform any action. If necessary, the CreateElement(int) method should be implemented in a derived class.
Example:
//--- example for CArrayObj::CreateElement(int)
|