Table of contents
Swift
Objective-C

Enumeration ExtendedBarcodeResultType

ExtendedBarcodeResultType determines the type of text result returned from a barcode scan.

  • Objective-C
  • Swift
typedef NS_ENUM(NSInteger, DSExtendedBarcodeResultType)
{
   /**Specifies the standard text. This means the barcode value. */
   DSExtendedBarcodeResultTypeStandardResult = 0,
   /**Specifies all the candidate text. This means all the standard text results decoded from the barcode. */
   DSExtendedBarcodeResultTypeCandidateResult = 1,
   /**Specifies the partial text. This means part of the text result decoded from the barcode. */
   DSExtendedBarcodeResultTypePartialResult = 2
};
public enum ExtendedBarcodeResultType : Int
{
   /**Specifies the standard text. This means the barcode value. */
   standardResult = 0
   /**Specifies all the candidate text. This means all the standard text results decoded from the barcode. */
   candidateResult = 1
   /**Specifies the partial text. This means part of the text result decoded from the barcode. */
   partialResult = 2
}

This page is compatible for: