CArray::RemoveAll
Odebere všechny prvky z tohoto pole.
void RemoveAll( );
Poznámky
Pokud již pole prázdná, funkce stále funguje.
Příklad
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
Požadavky
Záhlaví: afxtempl.h