LeftDblClk

[event icon] LeftDblClk() Event

Called when the user left double clicks on a cell

Applies to: Grid


[event icon] LeftDblClk() Event

Left double click

Applies to: Tree

Introduced in KCML version 5.02


>

LeftDblClk

This event is called if the user left double clicks on a supported control. This event handler is only available for grids if the LeftAction property is set appropriately.

Note that the LeftClick() event handler is always called prior to this event handler. This event selects the item and the double click event actions it.

For trees the Index property is available within this event handler to determine which item selected. For example, the following could be used to return the text associated with the item that the user selected:

 SelItem$ = ..Item(..Index).Text$

See also

Grid methods, properties and events. Tree methods, properties and events.