DataMatrixDetails
DataMatrixDetails represents detailed information about a Data Matrix barcode.
Definition
Namespace: Dynamsoft.BarcodeReader.Maui
Assembly: Dynamsoft.BarcodeReader.Maui
class DataMatrixDetails
Properties
| Property | Type | Description |
|---|---|---|
Rows |
int | The number of rows of the Data Matrix barcode. |
Columns |
int | The number of columns of the Data Matrix barcode. |
DataRegionRows |
int | The number of rows in the data region of the Data Matrix barcode. |
DataRegionColumns |
int | The number of columns in the data region of the Data Matrix barcode. |
DataRegionNumber |
int | The number of data regions in the Data Matrix barcode. |
Rows
The number of rows of the Data Matrix barcode, indicating how many rows of data modules it contains.
int Rows { get; }
Columns
The number of columns of the Data Matrix barcode, indicating how many columns of data modules it contains.
int Columns { get; }
DataRegionRows
The number of rows of the data region within the Data Matrix barcode. Data regions are subdivisions of a Data Matrix barcode where data is stored.
int DataRegionRows { get; }
DataRegionColumns
The number of columns of the data region within the Data Matrix barcode. Data regions are subdivisions of the barcode where data is stored.
int DataRegionColumns { get; }
DataRegionNumber
The number of data regions in the Data Matrix barcode. Data Matrix barcodes can have multiple data regions for storing data redundantly or for error correction purposes.
int DataRegionNumber { get; }