# Enumeration CaptureState

`CaptureState` describes the state of data capturing.

<div class="sample-code-prefix template2"></div>
   >- JavaScript
   >
>
```javascript
enum EnumCaptureState
{
   /** The data capturing is started. */
   CS_STARTED = 0,
   /** The data capturing is stopped. */
   CS_STOPPED = 1
}
```