다음을 통해 공유


CListBox::SetColumnWidth

다중 열 목록 상자에 픽셀 단위로 모든 열 너비를 설정 (생성 된 LBS_MULTICOLUMN 스타일).

void SetColumnWidth(
   int cxWidth 
);

매개 변수

  • cxWidth
    픽셀 단위로 모든 열 너비를 지정합니다.

예제

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

요구 사항

헤더: afxwin.h

참고 항목

참조

Clistbox 클래스 클래스

계층 구조 차트

LB_SETCOLUMNWIDTH