Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CameraBarcodeScanner]: Allow AL devs to provide barcode format #3326

Merged
merged 1 commit into from
Mar 20, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,15 @@ controladdin CameraBarcodeScannerProviderAddIn
/// <param name="ResultDisplayDuration">The duration in milliseconds for which the barcode result should be displayed.</param>
procedure RequestBarcodeAsync(ShowFlipCameraButton: Boolean; ShowTorchButton: Boolean; ResultDisplayDuration: Integer);

/// <summary>
/// This method is used to request the camera barcode scanner.
/// </summary>
/// <param name="BarcodeFormats">A list of comma-separated barcode formats that the scanner should recognize. The available formats are: QR_CODE,DATA_MATRIX,UPC_A,UPC_E,EAN_8,EAN_13,CODE_39,CODE_93,CODE_128,CODABAR,ITF,RSS14,PDF_417,RSS_EXPANDED,MSI,AZTEC</param>
/// <param name="ShowFlipCameraButton">Indicates whether the flip camera button should be shown.</param>
/// <param name="ShowTorchButton">Indicates whether the torch button should be shown.</param>
/// <param name="ResultDisplayDuration">The duration in milliseconds for which the barcode result should be displayed.</param>
procedure RequestBarcodeAsync(BarcodeFormats: Text; ShowFlipCameraButton: Boolean; ShowTorchButton: Boolean; ResultDisplayDuration: Integer);

/// <summary>
/// This event is raised when the control is ready.
/// </summary>
Expand Down
Loading