다음을 통해 공유


CListCtrl::GetStringWidth

지정 된 문자열을 표시 하는 데 필요한 최소 열 너비를 결정 합니다.

int GetStringWidth( 
   LPCTSTR lpsz  
) const;

매개 변수

  • lpsz
    주소 너비에 따라 결정 되는 null로 끝나는 문자열입니다.

반환 값

가 가리키는 문자열의 픽셀 너비를 lpsz.

설명

반환 된 너비 컨트롤의 현재 글꼴 및 여백 열 있지만 작은 아이콘 너비 고려합니다.

예제

        CString strColumn;
        int nWidth;

        // Insert six columns in the list view control. Make the width of 
        // the column be the width of the column header plus 50%. 
        for (int i = 0; i < 6; i++)
        {
            strColumn.Format(_T("column %d"), i);
            nWidth = 3*m_myListCtrl.GetStringWidth(strColumn)/2;
            m_myListCtrl.InsertColumn(i, strColumn, LVCFMT_LEFT, nWidth);
        }

요구 사항

헤더: afxcmn.h

참고 항목

참조

CListCtrl 클래스

계층 구조 차트

CListCtrl::GetColumnWidth