summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLTextAlignment.h
blob: eea45f6544628b89ee69756b0ffc559fffa4d7cb (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.
 *
 * @since SDL 1.0
 */
typedef SDLEnum SDLTextAlignment SDL_SWIFT_ENUM;

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

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

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