ArcGIS Runtime SDK for iOS: AGSPopupFieldFormat.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSPopupFieldFormat.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 
30 
31 
40 typedef NS_ENUM(NSInteger, AGSPopupDateFormat) {
58 };
59 
67 
68 #pragma mark -
69 #pragma mark initializers
70 
71 +(instancetype)popupFieldFormat;
72 
73 #pragma mark -
74 #pragma mark properties
75 
79 @property (nonatomic, assign, readwrite) AGSPopupDateFormat dateFormat;
80 
84 @property (nonatomic, assign, readwrite) NSInteger decimalPlaces;
85 
89 @property (nonatomic, assign, readwrite) BOOL useThousandsSeparator;
90 
91 #pragma mark -
92 #pragma mark methods
93 
94 @end
95 
96 
AGSPopupDateFormat
Definition: AGSPopupFieldFormat.h:40
@ AGSPopupDateFormatShortDate
Definition: AGSPopupFieldFormat.h:45
@ AGSPopupDateFormatLongMonthYear
Definition: AGSPopupFieldFormat.h:44
@ AGSPopupDateFormatShortDateLEShortTime24
Definition: AGSPopupFieldFormat.h:50
@ AGSPopupDateFormatShortDateLongTime24
Definition: AGSPopupFieldFormat.h:52
@ AGSPopupDateFormatShortDateLELongTime24
Definition: AGSPopupFieldFormat.h:48
@ AGSPopupDateFormatYear
Definition: AGSPopupFieldFormat.h:56
@ AGSPopupDateFormatShortDateLE
Definition: AGSPopupFieldFormat.h:46
@ AGSPopupDateFormatLongMonthDayYear
Definition: AGSPopupFieldFormat.h:43
@ AGSPopupDateFormatShortDateShortTime24
Definition: AGSPopupFieldFormat.h:54
@ AGSPopupDateFormatLongDate
Definition: AGSPopupFieldFormat.h:42
@ AGSPopupDateFormatUnknown
Definition: AGSPopupFieldFormat.h:57
@ AGSPopupDateFormatShortDateLongTime
Definition: AGSPopupFieldFormat.h:51
@ AGSPopupDateFormatShortDateLELongTime
Definition: AGSPopupFieldFormat.h:47
@ AGSPopupDateFormatShortDateLEShortTime
Definition: AGSPopupFieldFormat.h:49
@ AGSPopupDateFormatShortMonthYear
Definition: AGSPopupFieldFormat.h:55
@ AGSPopupDateFormatDayShortMonthYear
Definition: AGSPopupFieldFormat.h:41
@ AGSPopupDateFormatShortDateShortTime
Definition: AGSPopupFieldFormat.h:53
Definition: AGSObject.h:28
Display formatting for a popup field.
Definition: AGSPopupFieldFormat.h:67
NSInteger decimalPlaces
Definition: AGSPopupFieldFormat.h:84
BOOL useThousandsSeparator
Definition: AGSPopupFieldFormat.h:89
AGSPopupDateFormat dateFormat
Definition: AGSPopupFieldFormat.h:79
instancetype popupFieldFormat()