|
Interface Manager
C4Fonts.h
struct FontHeader
The FontHeader structure defines the properties of a font.
Data Members
unsigned long fontFlags; |
Reserved. Set to 0.
|
float fontHeight; |
The total height of the font, in pixels.
|
float fontBaseline; |
The distance from the top of the font to the font's baseline, in pixels.
|
float fontSpacing; |
The amount of extra horizontal space added between characters in the font, in pixels.
|
float fontLeading; |
The amount of extra vertical space added between consecutive lines, in pixels.
|
long glyphCount; |
The number of glyphs in the font. Currently, this should be 256.
|
long glyphStart; |
The index of the first glyph in the font. Currently, this should be 0.
|
GlyphData glyphData[1]; |
An array of GlyphData structures describing each glyph in the font. The size of this array must be equal to glyphCount.
|
See Also
GlyphData
|