Skip to content

Latest commit

 

History

History
48 lines (45 loc) · 1.16 KB

barcode-complement-mode.md

File metadata and controls

48 lines (45 loc) · 1.16 KB
layout title description keywords needAutoGenerateSidebar noTitleIndex breadcrumbText permalink ignore
default-layout
EnumBarcodeComplementMode
Use this enum data type to set constants for complement mode of barcodes in your Dynamsoft Barcode Reader project.
EnumBarcodeComplementMode, BarcodeReader, api reference
false
true
EnumBarcodeComplementMode(Mobile)
/programming/enumeration/barcode-complement-mode.html
true

EnumBarcodeComplementMode

>- Android >- Objective-C >- Swift > > ```java public class EnumBarcodeComplementMode { public static final int BCM_AUTO = 1; public static final int BCM_GENERAL = 2; public static final int BCM_SKIP = 0; } ``` > ```objc 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 }; ``` > ```swift public enum EnumBarcodeComplementMode : Int{ auto = 0x01 general = 0x02 skip = 0x00 } ```