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);
    TTextFormatFlags& __fastcall operator=(TTextFormat Value) { *this = TTextFormatFlags::_op_Implicit(Value); return *this; };
    __fastcall operator TTextFormat();
    static TTextFormatFlags __fastcall _op_Implicit(unsigned Value);
    TTextFormatFlags& __fastcall operator=(unsigned Value) { *this = TTextFormatFlags::_op_Implicit(Value); return *this; };
    __fastcall operator unsigned();
};

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. Please help us document this topic by using the Discussion page!