CComboBox::SetHorizontalExtent
コンボ ボックスのリスト ボックスを水平方向にスクロールできる幅をピクセル単位で指定します。
void SetHorizontalExtent(
UINT nExtent
);
パラメーター
- nExtent
コンボ ボックスのリスト ボックスを水平方向にスクロールできるピクセル数を指定します。
解説
リスト ボックスの幅がこの値よりも小さいときは、水平スクロール バーでリスト ボックス内の項目を水平方向にスクロールできます。 リスト ボックスの幅がこの値以上の場合、水平スクロール バーは表示されません。また、コンボ ボックスが CBS_DISABLENOSCROLL スタイルの場合は、水平スクロール バーは使用できない状態で表示されます。
使用例
// Find the longest string in the combo box.
CString str;
CSize sz;
int dx = 0;
TEXTMETRIC tm;
CDC* pDC = m_pComboBox->GetDC();
CFont* pFont = m_pComboBox->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_pComboBox->GetCount(); i++)
{
m_pComboBox->GetLBText(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_pComboBox->ReleaseDC(pDC);
// Set the horizontal extent so every character of all strings can
// be scrolled to.
m_pComboBox->SetHorizontalExtent(dx);
必要条件
**ヘッダー:**afxwin.h
参照
参照
CComboBox::GetHorizontalExtent