Table of contents

Enumeration CaptureState

CaptureState describes the state of data capturing.

  • Objective-C
  • Swift
typedef NS_ENUM(NSInteger, DSCaptureState)
{
   /** The data capturing is started. */
   DSCaptureStateStarted,
   /** The data capturing is stopped. */
   DSCaptureStateStopped,
   /** The data capturing is paused. */
   DSCaptureStatePaused
};
public enum CaptureState : Int
{
   /** The data capturing is started. */
   started
   /** The data capturing is stopped. */
   stopped
   /** The data capturing is paused. */
   paused
};

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: