| layout | default-layout |
|---|---|
| title | interface AztecDetails - Dynamsoft Core Module JS Edition API Reference |
| description | This page shows the JS edition of the interface AztecDetails in Dynamsoft DBR Module. |
| keywords | Aztec details, JS |
| needAutoGenerateSidebar | true |
| noTitleIndex | true |
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;
}The row count of the Aztec barcode, indicating how many rows of modules it contains.
rows: number;The column count of the Aztec barcode, indicating how many columns of modules it contains.
columns: number;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;