Color font structure
Source position: agraphics.pas line 329
type tColorTextFont = record |
||
ctf_TF: tTextFont; |
|
Standard Textfont structure |
ctf_Flags: Word; |
|
Extended flags (CT_*) |
ctf_Depth: Byte; |
|
Number of bit planes |
ctf_FgColor: Byte; |
|
Color that is remapped to FgPen |
ctf_Low: Byte; |
|
Lowest color represented here |
ctf_High: Byte; |
|
Highest color represented here |
ctf_PlanePick: Byte; |
|
PlanePick ala Images |
ctf_PlaneOnOff: Byte; |
|
PlaneOnOff ala Images |
ctf_ColorFontColors: pColorFontColors; |
|
Colors for font |
ctf_CharData: array [0..7] of Pointer; |
|
Pointers to bit planes ala TTextFont.tf_CharData |
end; |