CListBox::SetColumnWidth
設定中所有資料行的寬度 (以像素為單位) 多欄的清單方塊中的 (以 LBS_MULTICOLUMN 模式)。
void SetColumnWidth(
int cxWidth
);
參數
- cxWidth
在任何資料行指定像素寬度。
範例
// Find the pixel width of the largest item.
CString str;
CSize sz;
int dx = 0;
CDC* pDC = myListBox.GetDC();
for (int i=0;i < myListBox.GetCount();i++)
{
myListBox.GetText( i, str );
sz = pDC->GetTextExtent(str);
if (sz.cx > dx)
dx = sz.cx;
}
myListBox.ReleaseDC(pDC);
// Set the column width of the first column to be one and 1/3 units
// of the largest string.
myListBox.SetColumnWidth(dx*4/3);
需求
Header: afxwin.h