FontTypeEnum
FontTypeEnum enumeration constants are used to denote different types of fonts.
typedef enum {
FT_Serif,
FT_SansSerif,
FT_MonoSpace,
FT_Decorative,
FT_Unknown
} FontTypeEnum;
Elements
Name | Description |
---|---|
FT_Serif | Serif font (e.g., Times New Roman). |
FT_SansSerif | Sans Serif font (e.g., Arial). |
FT_MonoSpace | Monospace font (e.g., Courier). |
FT_Decorative | Decorative or handprinted font. |
FT_Unknown | Font type is undefined. |
Used in
7/3/2024 8:50:25 AM