CListCtrl::DeleteAllItems
BOOLDeleteAllItems();
Return Value
Nonzero if successful; otherwise zero.
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:DeleteAllItems()