Vcl.Samples.Spin.TTimerSpeedButton.MouseUp

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure MouseUp(Button: TMouseButton; Shift: TShiftState;
X, Y: Integer); override;

C++

DYNAMIC void __fastcall MouseUp(System::Uitypes::TMouseButton Button, System::Classes::TShiftState Shift, int X, int Y);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.Samples.Spin.pas
Vcl.Samples.Spin.hpp
Vcl.Samples.Spin TTimerSpeedButton

Description

OnMouseUp event dispatcher.

The MouseUp method provides responses to the calling of the OnMouseUp event when the user releases a previously pressed mouse button while the cursor's hot spot is over the control.

When the mouse is up, TTimer is disabled.

The Button parameter determines which mouse button the user pressed.

Shift indicates which shift keys (SHIFT, CTRL, or ALT) were down when the user pressed the mouse button.

X and Y are the pixel coordinates of the mouse pointer within the client area of the control.


See Also