Skip to content

Latest commit

 

History

History
32 lines (29 loc) · 821 Bytes

File metadata and controls

32 lines (29 loc) · 821 Bytes
layout default-layout
title CaptureState - Dynamsoft Vision Router C++ Enumerations
description Reference for the CaptureState enumeration in Dynamsoft Capture Vision C++ Edition, describing the possible states of the data capture process (started, stopped).
keywords Capture state
needGenerateH3Content true
needAutoGenerateSidebar true
noTitleIndex true
breadcrumbText CaptureState

Enumeration CaptureState

CaptureState describes the state of data capturing.

>- C++ > > ```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; ```