CellClickedEvent

final
class CellClickedEvent : MouseEventBase {
enum EventString;
}

Members

Variables

columnIndex
int columnIndex;
isDoubleClick
bool isDoubleClick;
rowIndex
int rowIndex;

See also: button inherited from the base class.

Inherited Members

From MouseEventBase

clientX
int clientX;
clientY
int clientY;

The mouse event location relative to the target widget

viewportX
int viewportX;
viewportY
int viewportY;

The mouse event location relative to the window origin

button
int button;

See: MouseEvent.button

buttonLinear
int buttonLinear;

See: MouseEvent.buttonLinear

ctrlKey
bool ctrlKey;
altKey
bool altKey;
shiftKey
bool shiftKey;

Indicates the current state of the given keyboard modifier keys.

state
int state;
modifierState
alias modifierState = state

for consistent names with key event.

isMouseWheel
bool isMouseWheel()

Mouse wheel movement sends down/up/click events just like other buttons clicking. This method is to help you filter that out.

Meta

History

Added March 2, 2025