Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
Deletes an item from a header control.
BOOL DeleteItem(
int nPos
);
Parameters
- nPos
Specifies the zero-based index of the item to delete.
Return Value
Nonzero if successful; otherwise 0.
Example
int nCount = m_myHeaderCtrl.GetItemCount();
// Delete all of the items.
for (int i=0;i < nCount;i++)
{
m_myHeaderCtrl.DeleteItem(0);
}
Requirements
Header: afxcmn.h