Skip to content

Latest commit

 

History

History
72 lines (49 loc) · 1.69 KB

File metadata and controls

72 lines (49 loc) · 1.69 KB
layout title description keywords permalink
default-layout
CPDF417Details Class - Dynamsoft Barcode Reader C++ Edition API Reference
This page shows CPDF417Details class definition of Dynamsoft Barcode Reader SDK C++ Edition.
rows, columns, errorCorrectionLevel, CPDF417Details, api reference
/programming/cplusplus/api-reference/pdf417-details.html

CPDF417Details

The CPDF417Details class represents a barcode in PDF417 format. It inherits from the CBarcodeDetails class and contains information about the row count, column count, and error correction level of the barcode.

Definition

Namespace: dynamsoft::dbr

Assembly: DynamsoftBarcodeReader

Inheritance: [CBarcodeDetails]({{ site.cpp_api }}barcode-details.html) -> CPDF417Details

class CPDF417Details : public CBarcodeDetails

Attributes

Attribute Type
rows int
columns int
errorCorrectionLevel int
hasLeftRowIndicator int
hasRightRowIndicator int

rows

The number of rows in the PDF417 barcode.

int rows

columns

The number of columns in the PDF417 barcode.

int columns

errorCorrectionLevel

Specifies the error correction level of PDF417 code.

int errorCorrectionLevel

hasLeftRowIndicator

Specifies whether the left row indicator of the PDF417 code exists.

int hasLeftRowIndicator

hasRightRowIndicator

Specifies whether the right row indicator of the PDF417 code exists.

int hasRightRowIndicator