Vcl.DockTabSet.TCaptionedTabDockTree.MouseUp

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

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.DockTabSet.pas
Vcl.DockTabSet.hpp
Vcl.DockTabSet TCaptionedTabDockTree

Description

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

Vcl.DockTabSet.TCaptionedTabDockTree.MouseUp inherits from Vcl.Controls.TDockTree.MouseUp. All content below this line refers to Vcl.Controls.TDockTree.MouseUp.

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