FMX.Controls.Presentation.TFindStyleResourceInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TFindStyleResourceInfo = record
    Clone: Boolean;
    ResourceName: string;
    Resource: TFmxObject;
  end;

C++

struct DECLSPEC_DRECORD TFindStyleResourceInfo
{
public:
    bool Clone;
    System::UnicodeString ResourceName;
    Fmx::Types::TFmxObject* Resource;
};

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 that TPresentedControl.FindStyleResource uses to send a message and get a style resource object from its presentation layer.

The values of ResourceName and Clone are equivalent to the parameters of TStyledControl.FindStyleResource. The message handler uses Resource to provide the matching style resource object found, if any.

See Also