DrawingItemState
Enumeration DrawingItemState describes the state of DrawingItems.
- Objective-C
- Swift
typedef NS_ENUM(NSInteger, DSDrawingItemState) { /** * The state of the DrawingItem is the default state. */ DSDrawingItemStateDefault = 1, /** * The state of the DrawingItem is selected. */ DSDrawingItemStateSelected = 2 };public enum EnumDrawingItemState : Int{ /** * The state of the DrawingItem is the default state. */ default = 1 /** * The state of the DrawingItem is selected. */ selected = 2 }