Vcl.Forms.TCustomForm.OnMouseUp

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnMouseUp: TMouseEvent read FOnMouseUp write FOnMouseUp stored IsForm;

C++

__property OnMouseUp = {stored=IsForm};

Properties

Type Visibility Source Unit Parent
event protected
Vcl.Forms.pas
Vcl.Forms.hpp
Vcl.Forms TCustomForm

Description

Occurs when the user releases a mouse button that was pressed with the mouse pointer over a component.

Vcl.Forms.TCustomForm.OnMouseUp inherits from Vcl.Controls.TControl.OnMouseUp. All content below this line refers to Vcl.Controls.TControl.OnMouseUp.

Occurs when the user releases a mouse button that was pressed with the mouse pointer over a component.

Use an OnMouseUp event handler to implement special processing when the user releases a mouse button.

The OnMouseUp event handler can respond to left, right, or center mouse button presses and shift key plus mouse-button combinations. Shift keys are the SHIFT, CTRL, and ALT keys. X and Y are the pixel coordinates of the mouse pointer in the client area of the Sender.

OnMouseUp is an event handler of type Vcl.Controls.TMouseEvent.

See Also

Code Examples