Table of contents

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