FMX.Controls.TControl.MouseClick

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure MouseClick(Button: TMouseButton; Shift: TShiftState; X, Y: Single); virtual;

C++

virtual void __fastcall MouseClick(System::Uitypes::TMouseButton Button, System::Classes::TShiftState Shift, float X, float Y);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
FMX.Controls.pas
FMX.Controls.hpp
FMX.Controls TControl

Description

Calls Click and starts the animation by calling StartTriggerAnimation.

MouseClick receives the following parameters:

  • Button determines which mouse button was previously pressed: left, right, or middle.
  • Shift indicates which shift keys -- SHIFT, CTRL, ALT, and CMD (only for Mac) -- were down when the pressed mouse button is released.
  • X and Y are the pixel coordinates of the mouse pointer within the client area of the control.

See Also