Enumeration CaptureState
CaptureState
describes the state of data capturing.
- JavaScript
- Android
- Objective-C
- Swift
- C++
- C#
- Python
enum EnumCaptureState { /** The data capturing is started. */ CS_STARTED = 0, /** The data capturing is stopped. */ CS_STOPPED = 1 }
@Retention(RetentionPolicy.CLASS) public @interface EnumCaptureState { /** The data capturing is started. */ public static final int CS_STARTED = 0; /** The data capturing is stopped. */ public static final int CS_STOPPED = 1; }
typedef NS_ENUM(NSInteger, DSCaptureState) { /** The data capturing is started. */ DSCaptureStateStarted, /** The data capturing is stopped. */ DSCaptureStateStopped };
public enum CaptureState : Int { /** The data capturing is started. */ started /** The data capturing is stopped. */ stopped };
typedef enum CaptureState { /** The data capturing is started. */ CS_STARTED, /** The data capturing is stopped. */ CS_STOPPED, /**The data capturing is paused.*/ CS_PAUSED, /**The data capturing is resumed.*/ CS_RESUMED } CaptureState;
public enum EnumCaptureState { /**The data capturing is started.*/ CS_STARTED, /**The data capturing is stopped.*/ CS_STOPPED, /**The data capturing is paused.*/ CS_PAUSED, /**The data capturing is resumed.*/ CS_RESUMED }
class EnumCaptureState(IntEnum): #The data capturing is started. CS_STARTED #The data capturing is stopped. CS_STOPPED #The data capturing is paused. CS_PAUSED #The data capturing is resumed. CS_RESUMED