次の方法で共有


CComboBox::GetHorizontalExtent

コンボ ボックスからコンボ ボックスのリスト ボックス部分を水平方向にスクロールできるピクセル幅を取得します。

UINT GetHorizontalExtent( ) const;

戻り値

ピクセルのコンボ ボックスのリスト ボックス部分にスクロール可能な幅。

解説

これは、コンボ ボックスのリスト ボックス部分に水平スクロール バーがある場合にのみ有効です。

使用例

// Find the longest string in the combo box.
CString strText;
CSize   sz;
UINT    dxText = 0;
CDC*    pDCCombo = m_pComboBox->GetDC();
for (int i = 0; i < m_pComboBox->GetCount(); i++)
{
   m_pComboBox->GetLBText(i, strText);
   sz = pDCCombo->GetTextExtent(strText);

   if (sz.cx > (LONG)dxText)
     dxText = sz.cx;
}
m_pComboBox->ReleaseDC(pDCCombo);

// Set the horizontal extent only if the current extent is not large enough. 
if (m_pComboBox->GetHorizontalExtent() < dxText)
{
   m_pComboBox->SetHorizontalExtent(dxText);
   ASSERT(m_pComboBox->GetHorizontalExtent() == dxText);
}

必要条件

ヘッダー: afxwin.h

参照

関連項目

CComboBox クラス

階層図

CListBox::SetHorizontalExtent

CB_GETHORIZONTALEXTENT