Vcl.Graphics.TTextFormatFlags
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; }
};
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
record struct |
public | Vcl.Graphics.pas Vcl.Graphics.hpp |
Vcl.Graphics | Vcl.Graphics |
説明
このトピックには現在ドキュメントが存在しません。「ノート」を利用してこのトピックの改良について話しあうことができます。