Vcl.Imaging.GIFImg.TGIFPlainTextExtensionRec
Delphi
TGIFPlainTextExtensionRec = packed record
BlockSize: byte; { should be 12 }
Left, Top, Width, Height: Word;
CellWidth, CellHeight: Byte;
TextFGColorIndex,
TextBGColorIndex: Byte;
end;
C++
struct DECLSPEC_DRECORD TGIFPlainTextExtensionRec
{
public:
System::Byte BlockSize;
System::Word Left;
System::Word Top;
System::Word Width;
System::Word Height;
System::Byte CellWidth;
System::Byte CellHeight;
System::Byte TextFGColorIndex;
System::Byte TextBGColorIndex;
};
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
record struct |
public | Vcl.Imaging.GIFImg.pas Vcl.Imaging.GIFImg.hpp |
Vcl.Imaging.GIFImg | Vcl.Imaging.GIFImg |
説明
TGIFPlainTextExtensionRec はグラフィックとしてテキストデータを描画するために必要なパラメータについての情報を保持するために使われます。
TGIFPlainTextExtensionRec はグラフィックとしてテキストデータを描画するために必要なパラメータについての情報を保持するために使われます。
TGIFPlainTextExtensionRec 型は内部的に使われます。
以下のテーブルでは TGIFPlainTextExtensionRec 型の変数に含まれるフィールドを列挙します。
フィールド | 意味 |
---|---|
BlockSize |
このフィールドは固定した値として12を保持します。 |
Left |
論理座標の左端とテキストグリッドの左端とのピクセルの列数です。 |
Top |
論理座標の上端とテキストグリッドの上端とのピクセルの行数です。 |
Width |
ピクセルでのテキストグリッドの幅です。 |
Height |
ピクセルでのテキストグリッドの高さです。 |
CellWidth |
グリッド内の互いのセルのピクセルでの幅です。 |
CellHeight |
グリッド内の互いのセルのピクセルでの高さです。 |
TextFGColorIndex |
テキストの前景の描画に使われるグローバルカラーテーブル内のインデックスです。 |
TextBGColorIndex |
テキストの背景の描画に使われるグローバルカラーテーブル内のインデックスです。 |
関連項目