CListBox::SetHorizontalExtent
Defina a largura, em pixels, por que uma caixa de listagem pode ser rolada horizontalmente.
void SetHorizontalExtent(
int cxExtent
);
Parâmetros
- cxExtent
Especifica o número de pixels por que a caixa de listagem pode ser rolada horizontalmente.
Comentários
Se o tamanho da caixa de listagem é menor do que esse valor, a barra de rolagem horizontal enrolará horizontalmente itens na caixa de listagem.Se a caixa de listagem é como grande ou maior que o valor, a barra de rolagem horizontal está oculta.
Para responder a uma chamada para SetHorizontalExtent, a caixa de listagem deve ter sido definida com o estilo de WS_HSCROLL .
Essa função de membro não é útil para caixas de listagem com várias colunas.Para caixas de listagem com várias colunas, chame a função de membro de SetColumnWidth .
Exemplo
// Find the longest string in the list box.
CString str;
CSize sz;
int dx = 0;
TEXTMETRIC tm;
CDC* pDC = m_myListBox.GetDC();
CFont* pFont = m_myListBox.GetFont();
// Select the listbox font, save the old font
CFont* pOldFont = pDC->SelectObject(pFont);
// Get the text metrics for avg char width
pDC->GetTextMetrics(&tm);
for (int i = 0; i < m_myListBox.GetCount(); i++)
{
m_myListBox.GetText(i, str);
sz = pDC->GetTextExtent(str);
// Add the avg width to prevent clipping
sz.cx += tm.tmAveCharWidth;
if (sz.cx > dx)
dx = sz.cx;
}
// Select the old font back into the DC
pDC->SelectObject(pOldFont);
m_myListBox.ReleaseDC(pDC);
// Set the horizontal extent so every character of all strings
// can be scrolled to.
m_myListBox.SetHorizontalExtent(dx);
Requisitos
Cabeçalho: afxwin.h