ArcGIS Runtime SDK for iOS: AGSSketchStyle.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSSketchStyle.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 
25 #import <Foundation/Foundation.h>
26 #import <ArcGIS/AGSColor.h>
27 
28 @class AGSSymbol;
29 
30 
31 
32  //Required for Globals API doc
34 
41 @interface AGSSketchStyle : NSObject
42 
43 #pragma mark -
44 #pragma mark initializers
45 
46 #pragma mark -
47 #pragma mark properties
48 
52 @property (nonatomic, assign) BOOL showNumbersForVertices;
53 
58 @property (nonatomic, strong, readwrite) AGSColor *selectionColor ;
59 
63 @property (nonatomic, strong, readwrite) AGSSymbol *lineSymbol;
64 
68 @property (nonatomic, strong, readwrite) AGSSymbol *fillSymbol;
69 
73 @property (nonatomic, strong, readwrite) AGSSymbol *feedbackLineSymbol;
74 
78 @property (nonatomic, strong, readwrite) AGSSymbol *feedbackFillSymbol;
79 
83 @property (nonatomic, strong, readwrite) AGSSymbol *feedbackVertexSymbol;
84 
88 @property (nonatomic, strong, readwrite) AGSSymbol *selectedVertexSymbol;
89 
93 @property (nonatomic, strong, readwrite) AGSSymbol *selectedMidVertexSymbol;
94 
98 @property (nonatomic, strong, readwrite) AGSSymbol *vertexSymbol;
99 
103 @property (nonatomic, strong, readwrite) AGSSymbol *midVertexSymbol;
104 
108 @property (nonatomic, strong, readwrite) AGSSymbol *vertexTextSymbol;
109 
110 #pragma mark -
111 #pragma mark methods
112 
113 @end
114 
115 
#define AGSColor
Definition: AGSColor.h:34
Style for the visual appearance of AGSSketchEditor.
Definition: AGSSketchStyle.h:42
AGSSymbol * lineSymbol
Definition: AGSSketchStyle.h:63
AGSColor * selectionColor
Definition: AGSSketchStyle.h:58
AGSSymbol * feedbackVertexSymbol
Definition: AGSSketchStyle.h:83
BOOL showNumbersForVertices
Definition: AGSSketchStyle.h:52
AGSSymbol * selectedVertexSymbol
Definition: AGSSketchStyle.h:88
AGSSymbol * feedbackLineSymbol
Definition: AGSSketchStyle.h:73
AGSSymbol * fillSymbol
Definition: AGSSketchStyle.h:68
AGSSymbol * selectedMidVertexSymbol
Definition: AGSSketchStyle.h:93
AGSSymbol * vertexSymbol
Definition: AGSSketchStyle.h:98
AGSSymbol * feedbackFillSymbol
Definition: AGSSketchStyle.h:78
AGSSymbol * midVertexSymbol
Definition: AGSSketchStyle.h:103
AGSSymbol * vertexTextSymbol
Definition: AGSSketchStyle.h:108
A symbol used to display a graphic or a feature.
Definition: AGSSymbol.h:93