FarPoint.Win
MouseUp Event
See Also 
FarPoint.Win Assembly > FarPoint.Win Namespace > ElementWindowless Class : MouseUp Event


Occurs if the user releases a mouse button while the cursor is over the element.

Syntax

Visual Basic (Declaration) 
Public Event MouseUp() As MouseEventHandler
Visual Basic (Usage)Copy Code
Dim instance As ElementWindowless
Dim handler As MouseEventHandler
 
AddHandler instance.MouseUp, handler
C# 
public event MouseEventHandler MouseUp()

Remarks

Use a MouseUp event to specify actions to occur when a given mouse button is released.

You can use a MouseMove event to respond to an event caused by moving the mouse.

See Also