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. |
typedef enum {
FT_Serif,
FT_SansSerif,
FT_MonoSpace,
FT_Decorative,
FT_Unknown
} FontTypeEnum;
| 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. |
Was this page helpful?