NTGeometryCollectionStyleBuilder
@interface NTGeometryCollectionStyleBuilder : NTStyleBuilder
A builder class for GeometryCollectionStyle.
-
Constructs a GeometryCollectionStyleBuilder object with all parameters set to defaults.
Declaration
Objective-C
- (id)init; -
Returns the point style.
Declaration
Objective-C
- (NTPointStyle *)getPointStyle;Return Value
The point style.
-
Sets the style that will be used for drawing points. The default is null style.
Declaration
Objective-C
- (void)setPointStyle:(NTPointStyle *)pointStyle;Parameters
pointStyleThe new point style.
-
Returns the line style.
Declaration
Objective-C
- (NTLineStyle *)getLineStyle;Return Value
The line style.
-
Sets the style that will be used for drawing lines. The default is null style.
Declaration
Objective-C
- (void)setLineStyle:(NTLineStyle *)lineStyle;Parameters
lineStyleThe new line style.
-
Returns the polygon style.
Declaration
Objective-C
- (NTPolygonStyle *)getPolygonStyle;Return Value
The polygon style.
-
Sets the style that will be used for drawing polygons. The default is null style.
Declaration
Objective-C
- (void)setPolygonStyle:(NTPolygonStyle *)polygonStyle;Parameters
polygonStyleThe new polygon style.
-
Builds a new instance of the GeometryCollectionStyle object using previously set parameters.
Declaration
Objective-C
- (NTGeometryCollectionStyle *)buildStyle;Return Value
A new GeometryCollectionStyle object.
-
Undocumented
Declaration
Objective-C
-(void)dealloc;
View on GitHub
NTGeometryCollectionStyleBuilder Class Reference