Struct Win32.ScrollInfo
Contains the scroll information of a scroll bar, or a window with a scroll bar.
public struct Win32.ScrollInfo
- Inherited Members
Remarks
Fields
cbSize
Specifies the size, in bytes, of this structure. The caller must set this to sizeof(
Win32.ScrollInfo)
.
public uint cbSize
Field Value
fMask
Specifies the scroll bar parameters to set or retrieve. Win32.ScrollInfoMask
public uint fMask
Field Value
nMax
Specifies the maximum scrolling position.
public int nMax
Field Value
nMin
Specifies the minimum scrolling position.
public int nMin
Field Value
nPage
Specifies the page size, in device units. A scroll bar uses this value to determine the appropriate size of the proportional scroll box.
public uint nPage
Field Value
nPos
Specifies the position of the scroll box.
public int nPos
Field Value
nTrackPos
Specifies the immediate position of a scroll box that the user is dragging. An application can retrieve this value while processing the SB_THUMBTRACK request code. An application cannot set the immediate scroll position; the SetScrollInfo function ignores this member.
public int nTrackPos