Skip to content

Latest commit

 

History

History
77 lines (74 loc) · 1.54 KB

capture-state.md

File metadata and controls

77 lines (74 loc) · 1.54 KB
layout title description keywords needGenerateH3Content needAutoGenerateSidebar noTitleIndex breadcrumbText
default-layout
CaptureState - Dynamsoft Vision Router Enumerations
The enumeration CaptureState of Dynamsoft Vision Router describes the state of data capturing.
Capture state
true
true
true
CaptureState

Enumeration CaptureState

CaptureState describes the state of data capturing.

>- JavaScript >- Android >- Objective-C >- Swift >- C++ > > ```javascript enum EnumCaptureState { /** The data capturing is started. */ CS_STARTED = 0, /** The data capturing is stopped. */ CS_STOPPED = 1 } ``` > ```java @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; } ``` > ```objc typedef NS_ENUM(NSInteger, DSCaptureState) { /** The data capturing is started. */ DSCaptureStateStarted, /** The data capturing is stopped. */ DSCaptureStateStopped }; ``` > ```swift public enum CaptureState : Int { /** The data capturing is started. */ started /** The data capturing is stopped. */ stopped }; ``` > ```cpp 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; ```