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);
}
需求
Header: afxwin.h