Class iDataMatrixDetails
iDataMatrixDetails is one of the detailedResult in class iTextResult. It stores the DataMatrix code details.
- Objective-C
- Swift
@interface iDataMatrixDetails : NSObjectclass iDataMatrixDetails : NSObject
| Attribute | Descriptions |
|---|---|
moduleSize |
The barcode module size (the minimum bar width in pixel). |
rows |
The row count of the barcode. |
columns |
The column count of the barcode. |
dataRegionRows |
The data region row count of the barcode. |
dataRegionColumns |
The data region column count of the barcode. |
dataRegionNumber |
The data region count. |
moduleSize
The barcode module size (the minimum bar width in pixel).
- Objective-C
- Swift
@property (nonatomic, assign) NSInteger moduleSizevar moduleSize: Int { get set }
rows
The row count of the barcode.
- Objective-C
- Swift
@property (nonatomic, assign) NSInteger rowsvar rows: Int { get set }
columns
The column count of the barcode.
- Objective-C
- Swift
@property (nonatomic, assign) NSInteger columnsvar columns: Int { get set }
dataRegionRows
The data region row count of the barcode.
- Objective-C
- Swift
@property (nonatomic, assign) NSInteger dataRegionRowsvar dataRegionRows: Int { get set }
dataRegionColumns
The data region column count of the barcode.
- Objective-C
- Swift
@property (nonatomic, assign) NSInteger dataRegionColumnsvar dataRegionColumns: Int { get set }
dataRegionNumber
The data region count.
- Objective-C
- Swift
@property (nonatomic, assign) NSInteger dataRegionNumbervar dataRegionNumber: Int { get set }