CListCtrl::GetColumnWidth
擷取一個資料行的寬度 (以報告檢視或清單檢視的。
int GetColumnWidth(
int nCol
) const;
參數
- nCol
指定寬度要擷取之資料行的索引。
傳回值
的寬度,以像素為單位,指定資料行 nCol。
範例
// Increase the column width of the second column by 20.
int nWidth = m_myListCtrl.GetColumnWidth(1);
m_myListCtrl.SetColumnWidth(1, 20 + nWidth);
需求
Header: afxcmn.h