FMX.Controls.TStyleBookDesignInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TStyleBookDesignInfo = record
    ClassName: string;
    CustomStyle: Boolean;
    DefaultStyleLookup: string;
    Name: string;
    StyleLookup: string;
    Control: TStyledControl;
    JustCreated: Boolean;
  end;

C++

struct DECLSPEC_DRECORD TStyleBookDesignInfo
{
public:
    System::UnicodeString ClassName;
    bool CustomStyle;
    System::UnicodeString DefaultStyleLookup;
    System::UnicodeString Name;
    System::UnicodeString StyleLookup;
    TStyledControl* Control;
    bool JustCreated;
};

Properties

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

Description

Record type that contains design-time information for the Form Designer.

See Also