FMX.TabControl.TTabItem.MouseClick

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

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.TabControl.pas
FMX.TabControl.hpp
FMX.TabControl TTabItem

Description

Calls Click and starts the animation by calling StartTriggerAnimation.

FMX.TabControl.TTabItem.MouseClick inherits from FMX.Controls.TControl.MouseClick. All content below this line refers to FMX.Controls.TControl.MouseClick. 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