BOOL DeleteAllItems( );
Return Value
Nonzero if successful; otherwise zero.
Remarks
Call this function to delete all items from the list view control.
Example
// The pointer to my list view control.
extern CListCtrl* pmyListCtrl;
// Delete all of the items from the list view control.
pmyListCtrl->DeleteAllItems();
ASSERT(pmyListCtrl->GetItemCount() == 0);
CListCtrl Overview | Class Members | Hierarchy Chart
See Also CListCtrl::InsertItem, CListCtrl::DeleteItem