.TH wxScrollWinEvent 3erl "wx 2.2.2.1" "wxWidgets team." "Erlang Module Definition" .SH NAME wxScrollWinEvent \- Functions for wxScrollWinEvent class .SH DESCRIPTION .LP A scroll event holds information about events sent from scrolling windows\&. .LP Note that you can use the EVT_SCROLLWIN* macros for intercepting scroll window events from the receiving window\&. .LP See: \fIwxScrollEvent\fR\&, Overview events .LP This class is derived (and can use functions) from: \fIwxEvent\fR\& .LP wxWidgets docs: wxScrollWinEvent .SH "EVENTS" .LP Use \fIwxEvtHandler:connect/3\fR\& with \fIwxScrollWinEventType\fR\& to subscribe to events of this type\&. .SH DATA TYPES .nf \fBwxScrollWinEvent()\fR\& = wx:wx_object() .br .fi .nf \fBwxScrollWin()\fR\& = .br #wxScrollWin{type = wxScrollWinEvent:wxScrollWinEventType(), .br commandInt = integer(), .br extraLong = integer()} .br .fi .nf \fBwxScrollWinEventType()\fR\& = .br scrollwin_top | scrollwin_bottom | scrollwin_lineup | .br scrollwin_linedown | scrollwin_pageup | scrollwin_pagedown | .br scrollwin_thumbtrack | scrollwin_thumbrelease .br .fi .SH EXPORTS .LP .nf .B getOrientation(This) -> integer() .br .fi .br .RS .LP Types: .RS 3 This = wxScrollWinEvent() .br .RE .RE .RS .LP Returns wxHORIZONTAL or wxVERTICAL, depending on the orientation of the scrollbar\&. .RE .LP .nf .B getPosition(This) -> integer() .br .fi .br .RS .LP Types: .RS 3 This = wxScrollWinEvent() .br .RE .RE .RS .LP Returns the position of the scrollbar for the thumb track and release events\&. .LP Note that this field can\&'t be used for the other events, you need to query the window itself for the current position in that case\&. .RE