Table of contents
Swift
Objective-C

PDF417Details

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

Definition

Namespace: Dynamsoft.DBR

Inheritance: BarcodeDetails -> PDF417Details

public class PDF417Details : BarcodeDetails

Attributes

Attribute Type
rows int
columns int
errorCorrectionLevel int
hasLeftRowIndicator int
hasRightRowIndicator int
codewords uint[]

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;

codewords

Specifies the codewords of the PDF417 barcode.

uint[] codewords;

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: