CListBox::SetHorizontalExtent
設定寬度,以像素為單位),清單方塊可水平捲動。
void SetHorizontalExtent(
int cxExtent
);
參數
- cxExtent
指定清單方塊可水平捲動的像素數。
備註
如果清單方塊的大小小於此值,水平捲軸將會水平捲動清單方塊中的項目。 如果清單方塊超過這個值是長或,水平捲軸將會隱藏起來。
若要回應呼叫 SetHorizontalExtent,必須定義清單方塊。 WS_HSCROLL 樣式。
此成員函式以多個資料行的清單方塊不是很有用的。 對於多資料行的清單方塊,請 SetColumnWidth 呼叫成員函式。
範例
// Find the longest string in the list box.
CString str;
CSize sz;
int dx = 0;
TEXTMETRIC tm;
CDC* pDC = m_myListBox.GetDC();
CFont* pFont = m_myListBox.GetFont();
// Select the listbox font, save the old font
CFont* pOldFont = pDC->SelectObject(pFont);
// Get the text metrics for avg char width
pDC->GetTextMetrics(&tm);
for (int i = 0; i < m_myListBox.GetCount(); i++)
{
m_myListBox.GetText(i, str);
sz = pDC->GetTextExtent(str);
// Add the avg width to prevent clipping
sz.cx += tm.tmAveCharWidth;
if (sz.cx > dx)
dx = sz.cx;
}
// Select the old font back into the DC
pDC->SelectObject(pOldFont);
m_myListBox.ReleaseDC(pDC);
// Set the horizontal extent so every character of all strings
// can be scrolled to.
m_myListBox.SetHorizontalExtent(dx);
需求
Header: afxwin.h