Control.MouseMove Method (Typed) | |
Provide a method that is invoked when the control has focus and the mouse is moved in the control.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD MouseMove(
oMouseEvent AS MouseEvent
) AS VOID
public virtual void MouseMove(
MouseEvent oMouseEvent
)
Request Example
View SourceParameters
- oMouseEvent
- Type: MouseEvent
The MouseEvent object containing information on the location of the mouse when it was moved.
Remarks Tip |
---|
Important! This is a callback method used by X#.
Normally, it should not be called in your application code.
|
Remarks
This event occurs when the mouse is moved with no mouse buttons clicked.
See Also