PyCWnd.SCROLLINFO tuple
SCROLLINFO tuple(addnMask, min, max, page, pos, trackPos)
Describes a SCROLLINFO tuple
Parameters
addnMask : int
Additional mask information. Python automatically fills the mask for valid items, so currently the only valid values are zero, and win32con.SIF_DISABLENOSCROLL.min : int
The minimum scrolling position. Both min and max, or neither, must be provided.max : int
The maximum scrolling position. Both min and max, or neither, must be provided.page : int
Specifies the page size. A scroll bar uses this value to determine the appropriate size of the proportional scroll box.pos : int
Specifies the position of the scroll box.trackPos : int
Specifies the immediate position of a scroll box that the user
is dragging. An application can retrieve this value while processing
the SB_THUMBTRACK notification message. An application cannot set
the immediate scroll position; the PyCWnd::SetScrollInfo function ignores
this member.Comments
When passed to Python, will always be a tuple of size 6, and items may be None if not available.
When passed from Python, it must have the addn mask attribute, but all other items may be None, or not exist.
userob is any Python object at all, but no reference count is kept, so you must ensure the object remains referenced throught the lists life.