다음을 통해 공유


CListCtrl::GetNumberOfWorkAreas

현재 작업 영역에 목록 뷰 컨트롤의 수를 검색합니다.

UINT GetNumberOfWorkAreas( ) const;

반환 값

이 현재 사용 합니다.

설명

이 멤버 함수는 Win32 매크로의 동작을 구현 ListView_GetNumberOfWorkAreas에 설명 된 대로, 여 Windows SDK.

예제

        UINT i, uCount = m_myListCtrl.GetNumberOfWorkAreas();
        LPRECT lpRects = (LPRECT) malloc(uCount*sizeof(RECT));

        if (lpRects != NULL)
        {
            // Dump all of the work area dimensions.
            m_myListCtrl.GetWorkAreas(uCount, lpRects);

            for (i=0; i < uCount; i++)
            {
                TRACE(_T("Work area %d; left = %d, top = %d, right = %d, ")
                    _T("bottom = %d\r\n"),
                    i, lpRects[i].left, lpRects[i].top, lpRects[i].right, 
                    lpRects[i].bottom);
            }

            free(lpRects);
        }
        else
        {
            TRACE(_T("Couldn't allocate enough memory!"));   
        }

요구 사항

헤더: afxcmn.h

참고 항목

참조

CListCtrl 클래스

계층 구조 차트

CListCtrl::GetWorkAreas