Class iOneDCodeDetails
iOneDCodeDetails is one of the detailedResult in class iTextResult. It stores the OneD code details.
- Objective-C
- Swift
@interface iOneDCodeDetails : NSObjectclass iOneDCodeDetails : NSObject
| Attribute | Descriptions |
|---|---|
moduleSize |
The barcode module size (the minimum bar width in pixel). |
startCharsBytes |
The start chars in a byte array. |
stopCharsBytes |
The stop chars in a byte array. |
checkDigitBytes |
The check digit chars in a byte array. |
startPatternRange |
The position of the start pattern relative to the barcode location. |
middlePatternRange |
The position of the middle pattern relative to the barcode location. |
endPatternRange |
The position of the end pattern relative to the barcode location. |
moduleSize
The barcode module size (the minimum bar width in pixel).
- Objective-C
- Swift
@property (nonatomic, assign) NSInteger moduleSize;var moduleSize: Int { get set }
startCharsBytes
The start chars in a byte array.
- Objective-C
- Swift
@property (nonatomic, nullable) NSData* startCharsBytes;var startCharsBytes: Data? { get set }
stopCharsBytes
The stop chars in a byte array.
- Objective-C
- Swift
@property (nonatomic, nullable) NSData* stopCharsBytes;var stopCharsBytes: Data? { get set }
checkDigitBytes
The check digit chars in a byte array.
- Objective-C
- Swift
@property (nonatomic, nullable) NSData* checkDigitBytes;var checkDigitBytes: Data? { get set }
startPatternRange
The position of the start pattern relative to the barcode location.
- Objective-C
- Swift
@property (nonatomic, nonnull) NSArray* startPatternRange;var startPatternRange: [Any]? { get set }
middlePatternRange
The position of the middle pattern relative to the barcode location
- Objective-C
- Swift
@property (nonatomic, nonnull) NSArray* middlePatternRange;var middlePatternRange: [Any]? { get set }
endPatternRange
The position of the end pattern relative to the barcode location.
- Objective-C
- Swift
@property (nonatomic, nonnull) NSArray* endPatternRange;var endPatternRange: [Any]? { get set }