ArcGIS Runtime SDK for iOS: AGSAttachmentsPopupElement.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSAttachmentsPopupElement.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/AGSPopupElement.h>
29 
30 
31 
41 typedef NS_ENUM(NSInteger, AGSPopupAttachmentsDisplayType) {
45 };
46 
52 
53 #pragma mark -
54 #pragma mark initializers
55 
56 
57 
62 - (instancetype)initWithDisplayType:(AGSPopupAttachmentsDisplayType)displayType;
63 
68 + (instancetype)attachmentsPopupElementWithDisplayType:(AGSPopupAttachmentsDisplayType)displayType;
69 
70 #pragma mark -
71 #pragma mark properties
72 
76 @property (nonatomic, copy, readwrite) NSString *elementDescription;
77 
84 @property (nonatomic, assign, readwrite) AGSPopupAttachmentsDisplayType displayType;
85 
89 @property (nonatomic, copy, readwrite) NSString *title;
90 
91 #pragma mark -
92 #pragma mark methods
93 
94 @end
95 
96 
AGSPopupAttachmentsDisplayType
Definition: AGSAttachmentsPopupElement.h:41
@ AGSPopupAttachmentsDisplayTypeList
Definition: AGSAttachmentsPopupElement.h:42
@ AGSPopupAttachmentsDisplayTypePreview
Definition: AGSAttachmentsPopupElement.h:43
@ AGSPopupAttachmentsDisplayTypeAuto
Definition: AGSAttachmentsPopupElement.h:44
Represents a pop-up element of type attachments that is displayed in a pop-up for a geoelement.
Definition: AGSAttachmentsPopupElement.h:52
NSString * elementDescription
Definition: AGSAttachmentsPopupElement.h:76
NSString * title
Definition: AGSAttachmentsPopupElement.h:89
AGSPopupAttachmentsDisplayType displayType
Definition: AGSAttachmentsPopupElement.h:84
Represents an element that is displayed in a pop-up for a geoelement.
Definition: AGSPopupElement.h:37