RightDblClk
RightDblClk() Event
Called when the user right double clicks on a cell
Applies to: Grid
RightDblClk() Event
Right double click
Applies to: Tree
Introduced in KCML version 5.02
This event is called if the user right double clicks on node of a supported control. This event handler is only available for grids if the RightAction property is set appropriately.
Note that the RightClick() 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$