Vcl.Themes.TThemedElementDetails

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TThemedElementDetails = record
    Element: TThemedElement;
    Part,
    State: Integer;
    class function Create(Element: TThemedElement; Part, State: Integer): TThemedElementDetails; static;
  end;

C++

struct DECLSPEC_DRECORD TThemedElementDetails
{
public:
    TThemedElement Element;
    int Part;
    int State;
    static TThemedElementDetails __fastcall Create(TThemedElement Element, int Part, int State);
};

Properties

Type Visibility Source Unit Parent
record
struct
public
Vcl.Themes.pas
Vcl.Themes.hpp
Vcl.Themes Vcl.Themes

Description

TThemedElementDetails describes a themed user interface element.

TThemedElementDetails is a record that contains information useful when applying themes to a user interface element. The following table lists each member of TThemedElementDetails and its meaning.



Member Description

Element

The type of the user interface element.

Part

The part of the control being themed.

State

The state of the user interface element.



See Also