Table of contents
Swift
Objective-C

AztecDetails

This interface extends BarcodeDetails interface and adds properties specific to Aztec barcodes such as rows, columns, layerNumber, etc.

interface AztecDetails extends BarcodeDetails {
    rows: number;
    columns: number;
    layerNumber: number;
}

rows

The row count of the Aztec barcode, indicating how many rows of modules it contains.

rows: number;

columns

The column count of the Aztec barcode, indicating how many columns of modules it contains.

columns: number;

layerNumber

The layer number of the Aztec code. It can be a negative number (-1, -2, -3, -4) to specify a compact Aztec code or a positive number (1, 2, .. 32) to specify a normal (full-range) Aztec code. The layer number determines the complexity and capacity of the Aztec barcode.

layerNumber: number;

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: