Table of Contents

Struct Win32.ScrollInfo

Namespace
Npp.DotNet.Plugin
Assembly
Npp.DotNet.Plugin.dll

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

uint

fMask

Specifies the scroll bar parameters to set or retrieve. Win32.ScrollInfoMask

public uint fMask

Field Value

uint

nMax

Specifies the maximum scrolling position.

public int nMax

Field Value

int

nMin

Specifies the minimum scrolling position.

public int nMin

Field Value

int

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

uint

nPos

Specifies the position of the scroll box.

public int nPos

Field Value

int

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

Field Value

int