Documentation
Table of contents
  • Documentation
  • API Reference
  • DynamsoftCaptureVisionRouter
  • Enumerations
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++
  • 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,
   /**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
}

Is this page helpful?

YesYes NoNo

    Version 2.2.30

    • Latest version
    • Version 2.x
      • Version 2.2.10
      • Version 2.0.21
      • Version 2.0.20
      • Version 2.0.10
      • Version 2.2.10
      • Version 2.0.21
      • Version 2.0.20
      • Version 2.0.10
    • Version 1.x
      • Version 1.2.1
      • Version 1.2.0
      • Version 1.1.0
      • Version 1.0.0
      • Version 1.0.4
      • Version 1.0.3
      • Version 1.0.2
      • Version 1.0.1
      • Version 1.0.0
      • Version 1.1.13
      • Version 1.1.12
      • Version 1.1.11
      • Version 1.1.9
      • Version 1.1.8
      • Version 1.1.7
      • Version 1.1.6
      • Version 1.1.5
      • Version 1.1.4
      • Version 1.1.3
      • Version 1.1.2
      • Version 1.1.1
      • Version 1.1.0
      • Version 1.0.0
      • Version 1.0.4
      • Version 1.0.3
      • Version 1.0.2
      • Version 1.0.1
      • Version 1.0.0
    Change +