Table of contents
Swift
Objective-C

This documentation is deprecated. It applies only to legacy version 9.x of Barcode Reader and must not be used for new development.

Please refer to the latest documentation and Migration Guide, which supersede this content.

EnumBarcodeComplementMode

  • Android
  • Objective-C
  • Swift
public class EnumBarcodeComplementMode {
    public static final int BCM_AUTO = 1;
    public static final int BCM_GENERAL = 2;
    public static final int BCM_SKIP = 0;
}
typedef NS_ENUM(NSInteger, EnumBarcodeComplementMode)
{
   /** Not supported yet.*/
   EnumBarcodeComplementModeAuto = 0x01,
   /** Complements the barcode using the general algorithm.*/
   EnumBarcodeComplementModeGeneral = 0x02,
   /**Skips the barcode complement. */
   EnumBarcodeComplementModeSkip = 0x00
};
public enum EnumBarcodeComplementMode : Int{
    auto = 0x01
    general = 0x02
    skip = 0x00
}

This page is compatible for:

Is this page helpful?

YesYes NoNo