CArray::RemoveAll
Supprime tous les éléments de ce tableau.
void RemoveAll( );
Notes
Si le tableau est déjà vide, la fonction fonctionne toujours.
Exemple
CArray<CPoint,CPoint> myArray;
// Add elements to the array.
for (int i = 0; i < 10; i++)
myArray.Add(CPoint(i, 2*i));
myArray.RemoveAll();
#ifdef _DEBUG
afxDump.SetDepth(1);
afxDump << "myArray: " << &myArray << "\n";
#endif
Configuration requise
Header: afxtempl.h