ArcGIS Runtime SDK for iOS: AGSLabelStackSeparator.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSLabelStackSeparator.h
Go to the documentation of this file.
1 /*
2  COPYRIGHT 2022 ESRI
3 
4  All rights reserved under the copyright laws of the United States
5  and applicable international laws, treaties, and conventions.
6 
7  This material is licensed for use under the Esri Master License
8  Agreement (MLA), and is bound by the terms of that agreement.
9  You may redistribute and use this code without modification,
10  provided you adhere to the terms of the MLA and include this
11  copyright notice.
12 
13  See use restrictions at http://www.esri.com/legal/pdfs/mla_e204_e300/english
14 
15  For additional information, contact:
16  Environmental Systems Research Institute, Inc.
17  Attn: Contracts and Legal Services Department
18  380 New York Street
19  Redlands, California, 92373
20  USA
21 
22  email: contracts@esri.com
23  */
24  //Required for Globals API doc
26 
27 #import <Foundation/Foundation.h>
28 #import <ArcGIS/AGSObject.h>
29 #import <ArcGIS/AGSJSONSerializable.h>
30 
31 
32 
38 typedef NS_ENUM(NSInteger, AGSLabelStackSeparatorBreakPosition) {
42 };
43 
54 
55 #pragma mark -
56 #pragma mark initializers
57 
63 - (instancetype)init;
64 
70 + (instancetype)labelStackSeparator;
71 
72 #pragma mark -
73 #pragma mark properties
74 
84 @property (nonatomic, assign, readwrite) AGSLabelStackSeparatorBreakPosition breakPosition;
85 
90 @property (nonatomic, assign, readwrite, getter=isForced) BOOL forced;
91 
109 @property (nonatomic, copy, readwrite) NSString *separator;
110 
116 @property (nonatomic, assign, readwrite, getter=isVisible) BOOL visible;
117 
118 #pragma mark -
119 #pragma mark methods
120 
121 @end
122 
123 
AGSLabelStackSeparatorBreakPosition
Definition: AGSLabelStackSeparator.h:38
@ AGSLabelStackSeparatorBreakPositionAutomatic
Definition: AGSLabelStackSeparator.h:39
@ AGSLabelStackSeparatorBreakPositionAfter
Definition: AGSLabelStackSeparator.h:40
@ AGSLabelStackSeparatorBreakPositionBefore
Definition: AGSLabelStackSeparator.h:41
A separator character in a label, where a line break may be inserted in long text.
Definition: AGSLabelStackSeparator.h:53
BOOL forced
Definition: AGSLabelStackSeparator.h:90
AGSLabelStackSeparatorBreakPosition breakPosition
Definition: AGSLabelStackSeparator.h:84
NSString * separator
Definition: AGSLabelStackSeparator.h:109
instancetype labelStackSeparator()
BOOL visible
Definition: AGSLabelStackSeparator.h:116
Definition: AGSObject.h:28
A protocol to convert objects to and from JSON.
Definition: AGSJSONSerializable.h:38