Class iPDF417Details
iPDF417Details is one of the detailedResult in class iTextResult. It stores the PDF417 code details.
- Objective-C
- Swift
@interface iPDF417Details : NSObjectclass iPDF417Details : 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 codewords between the left and right row indicators, where the actual data and the ECC is encoded. |
errorCorrectionLevel |
The error correction level of the barcode. |
hasLeftRowIndicator |
Indicates whether the PDF417 barcode has a left row indicator. |
hasRightRowIndicator |
Indicates whether the PDF417 barcode has a right row indicator. |
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 codewords between the left and right row indicators, where the actual data and the ECC is encoded.
- Objective-C
- Swift
@property (nonatomic, assign) NSInteger columnsvar columns: Int { get set }
errorCorrectionLevel
The error correction level of the barcode.
- Objective-C
- Swift
@property (nonatomic, assign) NSInteger errorCorrectionLevelvar errorCorrectionLevel: Int { get set }
hasLeftRowIndicator
Indicates whether the PDF417 barcode has a left row indicator.
- Objective-C
- Swift
@property (nonatomic, assign) NSInteger hasLeftRowIndicatorvar hasLeftRowIndicator: Int { get set }
hasRightRowIndicator
Indicates whether the PDF417 barcode has a right row indicator.
- Objective-C
- Swift
@property (nonatomic, assign) NSInteger hasRightRowIndicatorvar hasRightRowIndicator: Int { get set }