windows_programming_notes.nbk: Home | Index | Next Page: SelectObject | Previous Page: Scroll Bar Controls in Win32


 SCROLLINFO

The SCROLLINFO structure contains scroll bar parameters to be set by the SetScrollInfo function (or SBM_SETSCROLLINFO message), or retrieved by the GetScrollInfo function (or SBM_GETSCROLLINFO message).

Syntax

    typedef struct tagSCROLLINFO { 
        UINT cbSize; 
        UINT fMask; 
        int  nMin; 
        int  nMax; 
        UINT nPage; 
        int  nPos; 
        int  nTrackPos; 
    }   SCROLLINFO, *LPSCROLLINFO; 
    typedef SCROLLINFO CONST *LPCSCROLLINFO;

Members

Structure Information


windows_programming_notes.nbk: Home | Index | Next Page: SelectObject | Previous Page: Scroll Bar Controls in Win32


Notebook exported on Monday, 7 July 2008, 18:56:50 PM Eastern Daylight Time