Class iAztecDetails
iAztecDetails is one of the detailedResult in class iTextResult. It stores the Aztec code details.
- Objective-C
- Swift
@interface iAztecDetails : NSObjectclass iAztecDetails : 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. |
layerNumber |
A negative number (-1, -2, -3, -4) specifies a compact Aztec code. A positive number (1, 2, .. 32) specifies a normal (full-rang) Aztec code. |
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 }
layerNumber
A negative number (-1, -2, -3, -4) specifies a compact Aztec code. A positive number (1, 2, .. 32) specifies a normal (full-rang) Aztec code.
- Objective-C
- Swift
@property (nonatomic, assign) NSInteger layerNumbervar layerNumber: Int { get set }