summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLTextAlignment.h
blob: 5fafd443e5730d6ace2b19aee7f29fba56a0b86d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//  SDLTextAlignment.h
//


#import "SDLEnum.h"

/**
 * The list of possible alignments of text in a field. May only work on some display types. used in Show.
 *
 * @since SDL 1.0
 */
typedef SDLEnum SDLTextAlignment SDL_SWIFT_ENUM;

/**
 * Text aligned left.
 */
extern SDLTextAlignment const SDLTextAlignmentLeft;

/**
 * Text aligned right.
 */
extern SDLTextAlignment const SDLTextAlignmentRight;

/**
 * Text aligned centered.
 */
extern SDLTextAlignment const SDLTextAlignmentCenter;