Udostępnij za pośrednictwem


CListCtrl::GetNumberOfWorkAreas

Pobiera bieżący numer obszary robocze dla formantu widoku listy.

UINT GetNumberOfWorkAreas( ) const;

Wartość zwracana

Nie są używane w tej chwili.

Uwagi

Ta funkcja Członkowskie implementuje zachowanie makro Win32 ListView_GetNumberOfWorkAreas, jak opisano w Windows SDK.

Przykład

        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!"));   
        }

Wymagania

Nagłówek: afxcmn.h

Zobacz też

Informacje

Klasa CListCtrl

Wykres hierarchii

CListCtrl::GetWorkAreas