CListBox::GetHorizontalExtent

Recupera caixa de listagem largura em pixels por que pode ser rolada horizontalmente.

int GetHorizontalExtent( ) const;

Valor de retorno

A largura de rolagem caixa de listagem, em pixels.

Comentários

Isso é aplicável somente se a caixa de listagem tem uma barra de rolagem horizontal.

Exemplo

// 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);
}

Requisitos

Cabeçalho: afxwin.h

Consulte também

Referência

Classe de CListBox

Gráfico de hierarquia

CListBox::SetHorizontalExtent

LB_GETHORIZONTALEXTENT