Resource Base
Table of contents

DrawingStyleId

Enumeration DrawingStyleId describes the preset DrawingStyles.

  • Objective-C
  • Swift
typedef NS_ENUM(NSUInteger, DSDrawingStyleId) {
    /**A preset DrawingStyle with blue stroke colour and no fill colour.*/
    DSDrawingStyleIdBlueStroke = 1,
    /**A preset DrawingStyle with green stroke colour and no fill colour.*/
    DSDrawingStyleIdGreenStroke = 2,
    /**A preset DrawingStyle with orange stroke colour and no fill colour.*/
    DSDrawingStyleIdOrangeStroke = 3,
    /**A preset DrawingStyle with yellow stroke colour and no fill colour.*/
    DSDrawingStyleIdYellowStroke = 4,
    /**A preset DrawingStyle with blue stroke colour and fill colour.*/
    DSDrawingStyleIdBlueStrokeFill = 5,
    /**A preset DrawingStyle with green stroke colour and fill colour.*/
    DSDrawingStyleIdGreenStrokeFill = 6,
    /**A preset DrawingStyle with orange stroke colour and fill colour.*/
    DSDrawingStyleIdOrangeStrokeFill = 7,
    /**A preset DrawingStyle with yellow stroke colour and fill colour.*/
    DSDrawingStyleIdYellowStrokeFill = 8
};
public enum DrawingStyleId : Int{
    /**A preset DrawingStyle with blue stroke colour and no fill colour.*/
    blueStroke = 1
    /**A preset DrawingStyle with green stroke colour and no fill colour.*/
    greenStroke = 2
    /**A preset DrawingStyle with orange stroke colour and no fill colour.*/
    orangeStroke = 3
    /**A preset DrawingStyle with yellow stroke colour and no fill colour.*/
    yellowStroke = 4
    /**A preset DrawingStyle with blue stroke colour and fill colour.*/
    blueStrokeFill = 5
    /**A preset DrawingStyle with green stroke colour and fill colour.*/
    greenStrokeFill = 6
    /**A preset DrawingStyle with orange stroke colour and fill colour.*/
    orangeStrokeFill = 7
    /**A preset DrawingStyle with yellow stroke colour and fill colour.*/
    yellowStrokeFill = 8
}

This page is compatible for:

Version 1.0

Is this page helpful?

YesYes NoNo

In this article:

latest version

    • Latest version
    • Version 4.x
      • Version 4.2.0
      • Version 4.0.3
      • Version 4.0.2
      • Version 4.0.1
      • Version 4.0.0
    • Version 3.x
      • Version 3.3.10
      • Version 3.3.9
      • Version 3.3.8
      • Version 3.3.7
      • Version 3.3.6
      • Version 3.3.5
      • Version 3.3.4
      • Version 3.3.3
      • Version 3.3.2
      • Version 3.3.1
      • Version 3.3.0
      • Version 3.2.0
      • Version 3.1.0
      • Version 3.0.1
      • Version 3.0.0
    • Version 2.x
      • Version 2.3.5
      • Version 2.3.2
      • Version 2.3.1
      • Version 2.3.0
      • Version 2.1.4
      • Version 2.1.3
      • Version 2.1.0
      • Version 2.0.0
    • Version 1.x
      • Version 1.0.3
      • Version 1.0.1
      • Version 1.0.0
    Change +