Control.VerticalScroll Method (Typed) | |
Provide a method that is invoked when the control has focus and a vertical scroll bar is scrolled.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD VerticalScroll(
oScrollEvent
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual VerticalScroll(
Usual oScrollEvent = default
)
Request Example
View SourceParameters
- oScrollEvent (Optional)
- Type: Usual
The ScrollEvent object that describes the scroll type and new position.
Return Value
Type:
UsualRemarks Tip |
---|
Important! This is a callback method used by X#.
Normally, it should not be called in your application code.
|
The default behavior for this event handler is to update the thumb position; this can be changed using your own implementation of the handler. This event handler only works for HorizontalScrollBar and WindowHorizontalScrollBar objects. If the application has horizontal scroll bars, use a HorizontalScrollBar event handler.
See Also