Table of contents
Swift
Objective-C

DSScanningMode

DSScanningMode is an enumeration class that defines the barcode scanning mode.

Definition

Assembly: DynamsoftBarcodeReaderBundle.xcframework

  • Objective-C
  • Swift
  1. ```objc typedef NS_ENUM(NSInteger, DSScanningMode) { /**
    • The scan mode for scanning single barcode. */ DSScanningModeSingle, /**
    • The scan mode for scanning multiple barcodes. */ DSScanningModeMultiple }; ```
  2. ```swift @objc public enum ScanningMode: Int { /**
    • The scan mode for scanning single barcode. */ case single /**
    • The scan mode for scanning multiple barcodes. */ case multiple } ```

Is this page helpful?

YesYes NoNo

In this article: