Skip to main content
A newer version of this page is available. .

TdxAlertWindowManager.OnMouseDown Event

Enables you to perform custom actions when an end-user presses a mouse button and the mouse pointer is located over an alert window‘s area.

Declaration

property OnMouseDown: TdxAlertWindowManagerMouseEvent read; write;

Remarks

Sender specifies the alert window manager.

AAlertWindow specifies the alert window located under the mouse pointer.

AButton identifies the mouse button being pressed.

AShift determines the state of the Alt, Ctrl, and Shift keys and the state of the mouse buttons.

X and Y specify the coordinates of the mouse pointer within the alert window (relative to the window’s top-left corner).

To perform specific actions when an end-user releases a mouse button, handle the OnMouseUp event. You can handle the OnMouseDown and OnMouseUp events in combination with other mouse tracking events (OnMouseEnter, OnMouseLeave, OnMouseMove, OnDragBegin, OnDragMove, and OnDragEnd).

See Also