FMX.Controls.Presentation.TActionInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TActionInfo = record
    Sender: TBasicAction;
    CheckDefaults: Boolean;
  end;

C++

struct DECLSPEC_DRECORD TActionInfo
{
public:
    System::Classes::TBasicAction* Sender;
    bool CheckDefaults;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
FMX.Controls.Presentation.pas
FMX.Controls.Presentation.hpp
FMX.Controls.Presentation FMX.Controls.Presentation

Description

Record to hold the data of the arguments of TPresentedControl.ActionChange.

TPresentedControl.ActionChange uses TActionInfo to send those arguments as a message value to the presentation layer of the presentation proxy.

See Also