(This function is part of SDL_ttf, a separate library from SDL.)

TTF_GetFontStyle

Query a font's current style.

Header File

Defined in <SDL3_ttf/SDL_ttf.h>

Syntax

TTF_FontStyleFlags TTF_GetFontStyle(const TTF_Font *font);

Function Parameters

const TTF_Font * font the font to query.

Return Value

(TTF_FontStyleFlags) Returns the current font style, as a set of bit flags.

Remarks

The font styles are a set of bit flags, OR'd together:

Thread Safety

It is safe to call this function from any thread.

Version

This function is available since SDL_ttf 3.0.0.

See Also


CategoryAPI, CategoryAPIFunction, CategorySDLTTF