Barcode Pick View
Defined in namespace Scandit.DataCapture.Barcode.Pick.UI
Note
Barcode Pick is still in beta and may change in future versions of Scandit Data Capture SDK.
- FinishButtonTappedEventArgs
class FinishButtonTappedEventArgs : EventArgs
Added in version 6.26.0
Provides data for the BarcodePickView.FinishButtonTapped event.
- FinishButtonTappedEventArgs()
FinishButtonTappedEventArgs(BarcodePickView view)
Added in version 6.26.0
- View
BarcodePickView View { get; }
Added in version 6.26.0
- BarcodePickView
class BarcodePickView : UIView
Added in version 6.26.0
BarcodePickView.
- Create()
static BarcodePickView Create(CGRect frame, DataCaptureContext dataCaptureContext, BarcodePick mode, BarcodePickViewSettings settings)
Added in version 6.26.0
Initializes a BarcodePickView
- Create()
static BarcodePickView Create(CGRect frame, DataCaptureContext dataCaptureContext, BarcodePick mode, BarcodePickViewSettings settings, CameraSettings cameraSettings)
Added in version 6.26.0
Initializes a BarcodePickView
- Start()
voidStart()Added in version 6.26.0
Starts the camera and the scanning process. Can be stopped by calling Stop().
- Stop()
voidStop()Added in version 6.26.0
Pauses the camera and the scanning process. It can be started again using Start().
- Freeze()
voidFreeze()Added in version 6.26.0
Freezes the camera and the highlights position to make the selection easier. The scanning can be started again using Start().
- Reset()
voidReset()Added in version 7.1.0
Reset the picking flow. This will clear all picked items and restore the initial state.
- AddActionListener()
voidAddActionListener(IBarcodePickActionListener listener)Added in version 6.26.0
Add a IBarcodePickActionListener to the mode. User actions will be notified to the listener.
- OnDestroy()
voidOnDestroy()Added in version 6.26.0
Stops the camera and the scanning process. After this call the view should not be used anymore.
- RemoveActionListener()
voidRemoveActionListener(IBarcodePickActionListener listener)Added in version 6.26.0
Removes a IBarcodePickActionListener.
- AddListener()
voidAddListener(IBarcodePickViewListener listener)Added in version 6.26.0
Add a IBarcodePickViewListener to the mode. User actions will be notified to the listener.
- RemoveListener()
voidRemoveListener(IBarcodePickViewListener listener)Added in version 6.26.0
Removes a IBarcodePickViewListener.
- FinishButtonTapped
event EventHandler<FinishButtonTappedEventArgs> FinishButtonTapped
Added in version 6.26.0
Occurs when the finish button is tapped from the view. Called from the main thread.