Link Search Menu Expand Document

ListItem.DoubleClicked Property


Occurs when the left mouse button is double-clicked.

The following child objects are attached to the Event object.

Type Name Description
Number ShiftKey 1 if the Shift key is clicked, 0 otherwise
Number CtrlKey 1 if the Ctrl key is clicked, 0 otherwise
Number AltKey 1 if the Alt key is clicked, 0 otherwise
Number xPos X coordinate of mouse pointer
Number yPos Y coordinate of mouse pointer

Note
In the handler of the event that occurred in the ListItem class, do not use the Value property of the parent object ListBox class to refer to the selected item number. (The selected item number may not be reflected.)

For the selected item number, refer to the Index property (subscript of the array) of the From property (ListItem object) of the Event object passed as an argument of the event handler. For the selected state of the item, refer to the Selected property from the From property.