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

TdxAlertWindowManager.OnMouseUp Event

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

Declaration

property OnMouseUp: 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 released.

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 presses a mouse button, handle the OnMouseDown event. You can handle the OnMouseUp and OnMouseDown events in combination with other mouse tracking events (OnMouseEnter, OnMouseLeave, OnMouseMove, OnDragBegin, OnDragMove, and OnDragEnd).

See Also