Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
voidResetContent();
Remarks
Removes all items from a list box.
Example
// The pointer to my list box.
extern CListBox* pmyListBox;
// Delete all the items from the list box.
pmyListBox->ResetContent();
ASSERT(pmyListBox->GetCount() == 0);