Vcl.Buttons.TSpeedButton.OnMouseUp

From RAD Studio API Documentation

Delphi

property OnMouseUp: TMouseEvent read FOnMouseUp write FOnMouseUp;

C++

__property OnMouseUp;

Properties

Type Visibility Source Unit Parent
event published
Vcl.Buttons.pas
Vcl.Buttons.hpp
Vcl.Buttons TSpeedButton

Description

Occurs when the user releases a mouse button that was pressed with the mouse pointer over a component. {{#multireplace:Vcl.Buttons.TSpeedButton.OnMouseUp|H21=!|H25=%|H28=(|H29=)|H2A=*|H2B=+|H2F=/|H3C=<|H3D==|H3E=>|H5B=[|H5D=]|H5E=^|H7C=|}} inherits from {{#multireplace:Vcl.Controls.TControl.OnMouseUp|H21=!|H25=%|H28=(|H29=)|H2A=*|H2B=+|H2F=/|H3C=<|H3D==|H3E=>|H5B=[|H5D=]|H5E=^|H7C=|}}. All content below this line refers to {{#multireplace:Vcl.Controls.TControl.OnMouseUp|H21=!|H25=%|H28=(|H29=)|H2A=*|H2B=+|H2F=/|H3C=<|H3D==|H3E=>|H5B=[|H5D=]|H5E=^|H7C=|}}.

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