CListBox::GetHorizontalExtent
從清單方塊擷取在可以水平捲動的像素的寬度。
int GetHorizontalExtent( ) const;
傳回值
列出可捲動方塊的寬度,以像素為單位)。
備註
只有在清單方塊中有水平捲軸,才可以使用。
範例
// Find the longest string in the list box.
CString str;
CSize sz;
int dx=0;
CDC* pDC = m_myListBox.GetDC();
for (int i=0;i < m_myListBox.GetCount();i++)
{
m_myListBox.GetText( i, str );
sz = pDC->GetTextExtent(str);
if (sz.cx > dx)
dx = sz.cx;
}
m_myListBox.ReleaseDC(pDC);
// Set the horizontal extent only if the current extent is not large enough.
if (m_myListBox.GetHorizontalExtent() < dx)
{
m_myListBox.SetHorizontalExtent(dx);
ASSERT(m_myListBox.GetHorizontalExtent() == dx);
}
需求
Header: afxwin.h