Compartir a través de


CListBox::SetColumnWidth

Establece el ancho en píxeles de todas las columnas de un cuadro de lista de varias columnas (creado con el estilo de LBS_MULTICOLUMN ).

void SetColumnWidth( 
   int cxWidth  
);

Parámetros

  • cxWidth
    Especifica el ancho en píxeles de todas las columnas.

Ejemplo

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

Requisitos

encabezado: afxwin.h

Vea también

Referencia

CListBox Class

Gráfico de jerarquías

LB_SETCOLUMNWIDTH