Table of contents
Swift
Objective-C

DataMatrixDetails

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

interface DataMatrixDetails extends BarcodeDetails {
    rows: number;
    columns: number;
    dataRegionRows: number;
    dataRegionColumns: number;
    dataRegionNumber: number;
}

rows

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

rows: number;

columns

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

columns: number;

dataRegionRows

The row count of the data region within the DataMatrix barcode. Data regions are subdivisions of the barcode where data is stored.

dataRegionRows: number;

dataRegionColumns

The column count of the data region within the DataMatrix barcode.

dataRegionColumns: number;

dataRegionNumber

The count of data regions in the DataMatrix barcode. DataMatrix barcodes can have multiple data regions for storing data redundantly or for error correction purposes.

dataRegionNumber: number;

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: