OnMouseUp

Top  Previous  Next

 

OnMouseUp (Event)

 

Occur when the user releases a mouse button over AVAX

 

Syntax:

Private Sub object_OnMouseUp(Sender As System.Object, e As MouseUpEventArgs)

 

The OnMouseUp event syntax has the following parts:

Argument

Data Type

Description

Sender

System.Object

Is the object that raises the event

e.Button

Short

Returns an integer that identifies the button that was pressed

e.Shift

Short

Returns an integer that corresponds to the state of the SHIFT, CTRL, and ALT keys when the button specified in the button argument is pressed or released

e.x

Single

A number that specifies the current x location of the mouse pointer

e.y

Single

A number that specifies the current y location of the mouse pointer

 

Example