# EnumScanningMode

`EnumScanningMode` is a enumeration class that determines the scanning mode that the `BarcodeScanner` instance will operate in.

## Definition

*Assembly:* dynamsoft-barcode-reader-bundle-react-native

```tsx
enum EnumScanningMode {
  SM_SINGLE,
  SM_MULTIPLE
}
```

## Members

| Member | Description |
| ------ | ----------- |
| `SM_SINGLE` | Used for scanning a single barcode at a time, prioritizing speed over read rate. |
| `SM_MULTIPLE` | Used for scanning multiple barcodes at a time, finding a balance between speed and read rate. |
