DrawingItemState
Enumeration DrawingItemState
describes the state of DrawingItems.
- JavaScript
- Android
- Objective-C
- Swift
export enum EnumDrawingItemState { // The state of the DrawingItem is the default state. DIS_DEFAULT = 1, // The state of the DrawingItem is selected. DIS_SELECTED = 2 }
@IntDef({DIS_DEFAULT,DIS_SELECTED}) @Retention(RetentionPolicy.CLASS) public @interface EnumDrawingItemState { // The state of the DrawingItem is the default state. public static final int DIS_DEFAULT = 1; // The state of the DrawingItem is selected. public static final int DIS_SELECTED = 2; }
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 }