CListCtrl::DeleteColumn是一種函式,從列表視圖控制項中刪除列。
函式功能,函式原型,參數,返回值,示例,
函式功能
從列表視圖控制項中刪除列。
函式原型
BOOL DeleteColumn(
int nCol
);
int nCol
);
參數
nCol :要刪除的列的索引。
返回值
非零,如果成功;否則零。
示例
int nColumnCount = m_myListCtrl.GetHeaderCtrl()->GetItemCount();
// Delete all of the columns.
for (int i=0; i < nColumnCount; i++)
{
m_myListCtrl.DeleteColumn(0);
}
// Delete all of the columns.
for (int i=0; i < nColumnCount; i++)
{
m_myListCtrl.DeleteColumn(0);
}