Class iDataMatrixDetails
iDataMatrixDetails
is one of the detailedResult
in class iTextResult
. It stores the DataMatrix code details.
- Objective-C
- Swift
@interface iDataMatrixDetails : NSObject
class 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 moduleSize
var moduleSize: Int { get set }
rows
The row count of the barcode.
- Objective-C
- Swift
@property (nonatomic, assign) NSInteger rows
var rows: Int { get set }
columns
The column count of the barcode.
- Objective-C
- Swift
@property (nonatomic, assign) NSInteger columns
var columns: Int { get set }
dataRegionRows
The data region row count of the barcode.
- Objective-C
- Swift
@property (nonatomic, assign) NSInteger dataRegionRows
var dataRegionRows: Int { get set }
dataRegionColumns
The data region column count of the barcode.
- Objective-C
- Swift
@property (nonatomic, assign) NSInteger dataRegionColumns
var dataRegionColumns: Int { get set }
dataRegionNumber
The data region count.
- Objective-C
- Swift
@property (nonatomic, assign) NSInteger dataRegionNumber
var dataRegionNumber: Int { get set }