Vcl.Themes.TStyleTextOptions

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TStyleTextOptions = record
    Flags: TStyleTextFlags;
    TextColor: TColor;
    BorderColor: TColor;
    BorderSize: Integer;
    ShadowColor: TColor;
    ShadowOffset: TPoint;
    GlowSize: Integer;
  end;

C++

struct DECLSPEC_DRECORD TStyleTextOptions
{
public:
    TStyleTextFlags Flags;
    System::Uitypes::TColor TextColor;
    System::Uitypes::TColor BorderColor;
    int BorderSize;
    System::Uitypes::TColor ShadowColor;
    System::Types::TPoint ShadowOffset;
    int GlowSize;
};

Properties

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

Description

Describes the options for a style-enabled text.

TStyleTextOptions is a record that contains information necessary for drawing a text in a style-enabled environment.

See Also