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);
}
요구 사항
헤더: afxwin.h