CListCtrl::DeleteItem
Odstraní položku z ovládacího prvku seznamu zobrazení.
BOOL DeleteItem(
int nItem
);
Parametry
- nItem
Určuje index položky, které chcete odstranit.
Vrácená hodnota
Nenulová hodnota, pokud je úspěšná. jinak nula.
Příklad
int nCount = m_myListCtrl.GetItemCount();
// Delete all of the items from the list view control.
for (int i=0; i < nCount; i++)
{
m_myListCtrl.DeleteItem(0);
}
Požadavky
Záhlaví: afxcmn.h