FMX.Forms.TCommonCustomForm.MouseUp

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure MouseUp(Button: TMouseButton; Shift: TShiftState; AFormX, AFormY: Single; DoClick: Boolean = True); virtual;

C++

virtual void __fastcall MouseUp(System::Uitypes::TMouseButton Button, System::Classes::TShiftState Shift, float AFormX, float AFormY, bool DoClick = true);

Properties

Type Visibility Source Unit Parent
procedure
function
public
FMX.Forms.pas
FMX.Forms.hpp
FMX.Forms TCommonCustomForm

Description

Executes each time you release a mouse button.

MouseUp has the following parameters:

  • Button specifies the mouse button that has been released.
  • Shift determines the state of the CTRL, ALT, and SHIFT keys at the moment you released the mouse button.
  • X specifies the horizontal position of the mouse.
  • Y specifies the vertical position of the mouse.

See Also