ArcGIS Runtime SDK for iOS: AGSStrokeSymbolLayer.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSStrokeSymbolLayer.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/AGSSymbolLayer.h>
29 #import <CoreGraphics/CGGeometry.h>
30 
31 
32 
37 typedef NS_ENUM(NSInteger, AGSStrokeSymbolLayerCapStyle) {
41 };
42 
47 typedef NS_ENUM(NSInteger, AGSStrokeSymbolLayerLineStyle3D) {
50 };
51 
64 
65 #pragma mark -
66 #pragma mark initializers
67 
68 #pragma mark -
69 #pragma mark properties
70 
76 @property (nonatomic, assign, readwrite) AGSStrokeSymbolLayerCapStyle capStyle;
77 
84 @property (nonatomic, assign, readwrite) AGSStrokeSymbolLayerLineStyle3D lineStyle3D;
85 
90 @property (nonatomic, assign, readwrite) CGFloat width;
91 
92 #pragma mark -
93 #pragma mark methods
94 
95 @end
96 
97 
AGSStrokeSymbolLayerCapStyle
Definition: AGSStrokeSymbolLayer.h:37
@ AGSStrokeSymbolLayerCapStyleButt
Definition: AGSStrokeSymbolLayer.h:38
@ AGSStrokeSymbolLayerCapStyleSquare
Definition: AGSStrokeSymbolLayer.h:40
@ AGSStrokeSymbolLayerCapStyleRound
Definition: AGSStrokeSymbolLayer.h:39
AGSStrokeSymbolLayerLineStyle3D
Definition: AGSStrokeSymbolLayer.h:47
@ AGSStrokeSymbolLayerLineStyle3DTube
Definition: AGSStrokeSymbolLayer.h:48
@ AGSStrokeSymbolLayerLineStyle3DStrip
Definition: AGSStrokeSymbolLayer.h:49
A base class for stroke symbol layers.
Definition: AGSStrokeSymbolLayer.h:64
CGFloat width
Definition: AGSStrokeSymbolLayer.h:90
AGSStrokeSymbolLayerCapStyle capStyle
Definition: AGSStrokeSymbolLayer.h:76
AGSStrokeSymbolLayerLineStyle3D lineStyle3D
Definition: AGSStrokeSymbolLayer.h:84
A base class to represent symbol layers, which are the fundamental components used to build multilaye...
Definition: AGSSymbolLayer.h:156