Core Plot (iOS and tvOS)
Cocoa plotting framework for macOS, iOS, and tvOS
CPTTextStylePlatformSpecific.h
Go to the documentation of this file.
1 
6 typedef NS_ENUM (NSInteger, CPTTextAlignment) {
7  CPTTextAlignmentLeft = NSTextAlignmentLeft,
8  CPTTextAlignmentCenter = NSTextAlignmentCenter,
9  CPTTextAlignmentRight = NSTextAlignmentRight,
10  CPTTextAlignmentJustified = NSTextAlignmentJustified,
11  CPTTextAlignmentNatural = NSTextAlignmentNatural
12 };
CPTTextAlignmentJustified
@ CPTTextAlignmentJustified
Justified alignment.
Definition: CPTTextStylePlatformSpecific.h:10
CPTTextAlignmentNatural
@ CPTTextAlignmentNatural
Natural alignment of the text's script.
Definition: CPTTextStylePlatformSpecific.h:11
CPTTextAlignment
CPTTextAlignment
Enumeration of paragraph alignments.
Definition: CPTTextStylePlatformSpecific.h:6
CPTTextAlignmentRight
@ CPTTextAlignmentRight
Right alignment.
Definition: CPTTextStylePlatformSpecific.h:9
CPTTextAlignmentLeft
@ CPTTextAlignmentLeft
Left alignment.
Definition: CPTTextStylePlatformSpecific.h:7
CPTTextAlignmentCenter
@ CPTTextAlignmentCenter
Center alignment.
Definition: CPTTextStylePlatformSpecific.h:8