WebControl.DoubleClick

From Xojo Documentation

Event


WebControl.DoubleClick(X As Integer, Y As Integer, Details As Realbasic.MouseEvent)

Supported for all project types and targets.

The user has double-clicked (or double-tapped) within the control. X and Y are the coordinates within the cell and Details contains information about the click.

Example

Display the contents of the first WebListBox cell when a row double-clicked:

MessageBox("The first cell contains: " + Me.List(Me.ListIndex))