MSFGeometryCollectionStyleBuilder
Objective-C
@interface MSFGeometryCollectionStyleBuilder : MSFStyleBuilder
Swift
class MSFGeometryCollectionStyleBuilder : MSFStyleBuilder
A builder class for GeometryCollectionStyle.
-
Constructs a GeometryCollectionStyleBuilder object with all parameters set to defaults.
Declaration
Objective-C
- (id)init;Swift
init!() -
Returns the point style.
Declaration
Objective-C
- (MSFPointStyle *)getPointStyle;Swift
func getPointStyle() -> MSFPointStyle!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:(MSFPointStyle *)pointStyle;Swift
func setPointStyle(_ pointStyle: MSFPointStyle!)Parameters
pointStyleThe new point style.
-
Returns the line style.
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:(MSFLineStyle *)lineStyle;Swift
func setLineStyle(_ lineStyle: MSFLineStyle!)Parameters
lineStyleThe new line style.
-
Returns the polygon style.
Declaration
Objective-C
- (MSFPolygonStyle *)getPolygonStyle;Swift
func getPolygonStyle() -> MSFPolygonStyle!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:(MSFPolygonStyle *)polygonStyle;Swift
func setPolygonStyle(_ polygonStyle: MSFPolygonStyle!)Parameters
polygonStyleThe new polygon style.
-
Builds a new instance of the GeometryCollectionStyle object using previously set parameters.
Declaration
Objective-C
- (MSFGeometryCollectionStyle *)buildStyle;Swift
func buildStyle() -> MSFGeometryCollectionStyle!Return Value
A new GeometryCollectionStyle object.
-
Undocumented
Declaration
Objective-C
-(void)dealloc;Swift
func dealloc()