Link Search Menu Expand Document

SSpread.DoubleClicked Event

Occurs when the left mouse button is double-clicked on a cell.

The following child objects are attached to the Event object.

Type Name Description
Number Col Column number of the cell where the left mouse button was double-clicked
Number Row Row number of the cell where the left mouse button was double-clicked
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

The event does not occur in the cell whose input mode is ON (edited state).

Example of usage

Function OnDoubleClicked(e) {
    MessageBox (strf ("(% 1,% 2) cell was double-clicked ", e.Col, e.Row));
}

Related Item
Clicked, LButtonUp, RButtonUp, RDoubleClicked event