DblClick

Top  Previous  Next

 

DblClick (Event)

 

Occurs when the user presses and releases a mouse button and then presses and releases it again over AVAX

 

Syntax:

Private Sub object_DblClick(Sender As System.Object, e As System.EventArgs)

 

The DblClick event syntax has the following parts:

Argument

Data Type

Description

Sender

System.Object

Is the object that raises the event

e

System.EventArgs

Is the object that contains the event data

 

Example