OnClick

Top  Previous  Next

 

OnClick (Event)

 

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

 

Syntax:

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

 

The OnClick 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