Control.MouseButtonUp Method (Typed) | |
Provide a method that is invoked when the control has focus, the mouse pointer is positioned over the window, and a mouse button is released.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD MouseButtonUp(
oMouseEvent AS MouseEvent
) AS VOID
public virtual void MouseButtonUp(
MouseEvent oMouseEvent
)
Request Example
View SourceParameters
- oMouseEvent
- Type: MouseEvent
The MouseEvent object that contains information about the state of the mouse when the button was released.
Remarks Tip |
---|
Important! This is a callback method used by X#.
Normally, it should not be called in your application code.
|
Do not assume Control:MouseButtonUp() is called immediately after Control:MouseButtonDown(). Other MouseEvents can be generated during this time.
In some cases, there may be no Control:MouseButtonUp() events directed to the window for a corresponding Control:MouseButtonDown(). This can occur if the mouse button is clicked while over the window, but released after the mouse has moved off the window.
See Also