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

Direction flags

## Header File

Defined in [<SDL_ttf.h>](https://github.com/libsdl-org/SDL_ttf/blob/SDL2/include/SDL_ttf.h)

## Syntax

```c
typedef enum TTF_Direction
{
  TTF_DIRECTION_LTR = 0,    /* Left to Right */
  TTF_DIRECTION_RTL,        /* Right to Left */
  TTF_DIRECTION_TTB,        /* Top to Bottom */
  TTF_DIRECTION_BTT         /* Bottom to Top */
} TTF_Direction;
```

## See Also

- [TTF_SetFontDirection](TTF_SetFontDirection)

----
[CategoryAPI](CategoryAPI), [CategoryAPIEnum](CategoryAPIEnum)