Class iAztecDetails
iAztecDetails
is one of the detailedResult
in class iTextResult
. It stores the Aztec code details.
- Objective-C
- Swift
@interface iAztecDetails : NSObject
class 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 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 }
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 layerNumber
var layerNumber: Int { get set }