Table of contents
Swift
Objective-C

DataMatrixDetails

The DataMatrixDetails class represents the details of a DataMatrix barcode. It is derived from the BarcodeDetails class and contains various attributes related to the DataMatrix barcode.

Definition

Package: com.dynamsoft.dbr

Inheritance: BarcodeDetails -> DataMatrixDetails

public class DataMatrixDetails extends BarcodeDetails

Attributes

Attribute Type Description
rows int The row count of the DataMatrix barcode.
columns int The column count of the DataMatrix barcode.
dataRegionRows int The data region row count of the DataMatrix barcode.
dataRegionColumns int The data region column count of the DataMatrix barcode.
dataRegionNumber int The data region count.

Constructors

Constructor Description
DataMatrixDetails() Default constructor.
DataMatrixDetails(int rows, int columns, int dataRegionRows, int dataRegionColumns, int dataRegionNumber) Constructor with parameters.

Attribute Details

rows

The row count of the DataMatrix barcode.

public int rows

columns

The column count of the DataMatrix barcode.

public int columns

dataRegionRows

The data region row count of the DataMatrix barcode.

public int dataRegionRows

dataRegionColumns

The data region column count of the DataMatrix barcode.

public int dataRegionColumns

dataRegionNumber

The data region count.

public int dataRegionNumber

Constructor Details

DataMatrixDetails()

Default constructor. Initializes a new instance of the DataMatrixDetails class with default values (-1, -1, -1, -1, -1).

public DataMatrixDetails()

DataMatrixDetails(int rows, int columns, int dataRegionRows, int dataRegionColumns, int dataRegionNumber)

Constructor with parameters. Initializes a new instance of the DataMatrixDetails class with specified values.

public DataMatrixDetails(int rows, int columns, int dataRegionRows, int dataRegionColumns, int dataRegionNumber)

Parameters

rows: The row count of the DataMatrix barcode.

columns: The column count of the DataMatrix barcode.

dataRegionRows: The data region row count of the DataMatrix barcode.

dataRegionColumns: The data region column count of the DataMatrix barcode.

dataRegionNumber: The data region count.

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: