Barcode Xpress Mobile for iOS
 All Classes Functions Variables Properties Pages
Result Class Reference
public class Result

Swift wrapper around the results returned from the recognition library.

    type

    public var type : BarcodeType

    An instance of the BarcodeType enumeration which describes the type of this result.

    valueLength

    public var valueLength : Int

    Length in characters of the returned value.

    confidence

    public var confidence : Int

    The confidence value reported by the recognition library. 1 - 100

    P1

    public var P1 : CGPoint

    Upper left hand point of the barcode’s bounding box.

    P2

    public var P2 : CGPoint

    Upper right hand point of the barcode’s bounding box.

    P3

    public var P3 : CGPoint

    Lower right hand point of the barcode’s bounding box.

    P4

    public var P4 : CGPoint

    Lower left hand point of the barcode’s bounding box.

    value

    public var value : String ?

    Swift String representation of the barcode’s decoded value.

    valueData

    public var valueData : UnsafeMutablePointer < Int8 > ?

    Pointer to the raw version of the barcode’s decoded value.

    status

    public var status : Status ?

    The status reported by the recognition library for this result.