Condividi tramite


CListBox::SetColumnWidth

Imposta la larghezza in pixel di tutte le colonne in una casella di riepilogo a più colonne (creata con lo stile LBS_MULTICOLUMN ).

void SetColumnWidth(
   int cxWidth 
);

Parametri

  • cxWidth
    Specifica la larghezza in pixel di tutte le colonne.

Esempio

// Find the pixel width of the largest item.
CString str;
CSize   sz;
int     dx = 0;
CDC*    pDC = myListBox.GetDC();
for (int i=0;i < myListBox.GetCount();i++)
{
   myListBox.GetText( i, str );
   sz = pDC->GetTextExtent(str);

   if (sz.cx > dx)
      dx = sz.cx;
}
myListBox.ReleaseDC(pDC);

// Set the column width of the first column to be one and 1/3 units
// of the largest string. 
myListBox.SetColumnWidth(dx*4/3);

Requisiti

Header: afxwin.h

Vedere anche

Riferimenti

Classe di CListBox

Grafico della gerarchia

LB_SETCOLUMNWIDTH