You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ExtendedBarcodeResultType - Dynamsoft Barcode Reader C++ Enumerations
description
Reference for the ExtendedBarcodeResultType enumeration in DBR C++ Edition, which classifies the type of text result returned from a barcode scan (e.g., standard, candidate, partial).
keywords
Extended barcode result type
codeAutoHeight
true
Enumeration ExtendedBarcodeResultType
ExtendedBarcodeResultType determines the type of text result returned from a barcode scan.
>- C++
>
>
```cpp
typedef enum ExtendedBarcodeResultType
{
/**Specifies the standard text. This means the barcode value. */
EBRT_STANDARD_RESULT,
/**Specifies all the candidate text. This means all the standard text results decoded from the barcode. */
EBRT_CANDIDATE_RESULT,
/**Specifies the partial text. This means part of the text result decoded from the barcode. */
EBRT_PARTIAL_RESULT
}ExtendedBarcodeResultType;
```