Vcl.Graphics.TTextFormatFlags

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TTextFormatFlags = record
  private
    FValue: TTextFormat;
  public
    class operator Implicit(Value: TTextFormat): TTextFormatFlags;
    class operator Implicit(Value: TTextFormatFlags): TTextFormat;
    class operator Implicit(Value: TDrawTextFlags): TTextFormatFlags;
    class operator Implicit(Value: TTextFormatFlags): TDrawTextFlags;
  end;

C++

struct DECLSPEC_DRECORD TTextFormatFlags
{
private:
    TTextFormat FValue;
public:
    static TTextFormatFlags __fastcall _op_Implicit(TTextFormat Value);
    __fastcall operator TTextFormat();
    static TTextFormatFlags __fastcall _op_Implicit(unsigned Value);
    __fastcall operator unsigned();
    TTextFormatFlags& operator =(TTextFormat Value) { *this = TTextFormatFlags::_op_Implicit(Value); return *this; }
    TTextFormatFlags& operator =(unsigned Value) { *this = TTextFormatFlags::_op_Implicit(Value); return *this; }
};

Properties

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

Description

Embarcadero Technologies does not currently have any additional information.