DSCandidateBarcodeZone Class
DSCandidateBarcodeZone
is a class that represents the information of a single candidate barcode zone.
Definition
Assembly: DynamsoftBarcodeReader.xcframework
- Objective-C
- Swift
@interface DSCandidateBarcodeZone : NSObject
class CandidateBarcodeZone: NSObject
Attributes
Attributes | Type | Description |
---|---|---|
location |
DSQuadrilateral | The location of the candidate barcode zone. |
possibleFormats |
DSBarcodeFormat | The possible barcode formats of the barcode in the candidate barcode zone. |
location
The location of the candidate barcode zone within the image represented as a DSQuadrilateral
.
- Objective-C
- Swift
@property (nonatomic, copy) DSQuadrilateral * location;
var location: DSQuadrilateral? { get set }
possibleFormats
The possible format(s) of the barcode in the candidate barcode zone as EnumBarcodeFormat
items.
- Objective-C
- Swift
@property (nonatomic, assign) DSBarcodeFormat possibleFormats;
var possibleFormats: DSBarcodeFormat { get set }