Window.HorizontalSpin Method (Typed) | |
Provide a method that is invoked when a horizontal spinner is spun.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD HorizontalSpin(
oSpinnerEvent AS SpinnerEvent
) AS USUAL
public virtual Usual HorizontalSpin(
SpinnerEvent oSpinnerEvent
)
Request Example
View SourceParameters
- oSpinnerEvent
- Type: SpinnerEvent
The SpinnerEvent object that describes which horizontal spinner was spun.
Return Value
Type:
UsualThis method calls Window.Default() and returns the result of Window.Default()
Remarks 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 position of the spinner; 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 vertical scroll bars, use a WindowVerticalScrollBar event handler.
See Also