DblClk

[event icon] DblClk() Event

Called when the user double clicks on an item in the list

Applies to: ComboBox , List Box


[event icon] DblClk() Event

Double click on graph data

Applies to: Graph

Introduced in KCML version 6.00


>DblClk

DblClk

This event is peculiar to listboxes, comboboxes and graph segments. Grids and trees support separate LeftDblClk and RightDblClk events. Edit boxes and buttons support only the Click() event.

It is called if the user double clicks on an item in a list box or a segment of a graph (bar element, pie sector or legend). Note that the Click() event will have been called prior to this event. The selection actually occurred at the point of the Click() event and the double click just actions the selection.

In the listbox case the entry selected is available using the index property.

In the graph case the data set and index are found in ClickSet and ClickIndex and allow the programmer to take an action based on the element clicked such as bring up further information or drilling down into the data. On pie charts elements may be highlighted using the Explode() method.

See also

ComboBox methods, properties and events. Graph methods, properties and events. List Box methods, properties and events.