Documentation
Table of contents
Notice: This documentation is archived. For the latest product features and documentation, please visit Dynamsoft Capture Vision Documentation.

Enumeration CaptureState

CaptureState describes the state of data capturing.

  • JavaScript
  • Android
  • Objective-C
  • Swift
  • C++
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
} CaptureState;

Is this page helpful?

YesYes NoNo

    version 2.0.30

    • version 2.4.10
    • Version 2.x
      • Version 2.2.30
      • Version 2.2.20
      • Version 2.2.10
      • Version 2.2.0
      • Version 2.0.30
      • Version 2.0.20
      • Version 2.0.10
      • Version 2.0.0
    Change +