Vcl.Controls.TDockTree.MouseUp

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure MouseUp(Button: TMouseButton; Shift: TShiftState;
X, Y: Integer; var Handled: Boolean); virtual;

C++

virtual void __fastcall MouseUp(System::Uitypes::TMouseButton Button, System::Classes::TShiftState Shift, int X, int Y, bool &Handled);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls TDockTree

Description

MouseUp is called when the user releases a previously pressed mouse button.

Override the protected MouseUp method to provide a response when the user releases a previously pressed mouse button.

The Button parameter determines which mouse button was pressed: left, right, or middle. The Shift parameter indicates whether the shift keys (SHIFT, CTRL, ALT) are pressed. X and Y are the pixel coordinates of the mouse cursor within the client area of the control. Handled is used to prevent the control from receiving the message.

See Also