Vcl.Grids.TInplaceEditList.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.Grids.pas
Vcl.Grids.hpp
Vcl.Grids TInplaceEditList

Description

Provides special processing when the user releases a mouse button.

MouseUp is called when the user releases a previously pressed mouse button. As implemented in TInplaceEditList, MouseUp calls the DoEditButtonClick method to open a dialog box, if the button pressed by the user is an ellipsis button. Finally, MouseUp generates an OnMouseUp event.

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