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()
void
Start()Added in version 6.26.0
Starts the camera and the scanning process. Can be stopped by calling Stop().
- Stop()
void
Stop()Added in version 6.26.0
Pauses the camera and the scanning process. It can be started again using Start().
- Freeze()
void
Freeze()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().
- AddActionListener()
void
AddActionListener(IBarcodePickActionListener listener)Added in version 6.26.0
Add a IBarcodePickActionListener to the mode. User actions will be notified to the listener.
- OnDestroy()
void
OnDestroy()Added in version 6.26.0
Stops the camera and the scanning process. After this call the view should not be used anymore.
- RemoveActionListener()
void
RemoveActionListener(IBarcodePickActionListener listener)Added in version 6.26.0
Removes a IBarcodePickActionListener.
- AddListener()
void
AddListener(IBarcodePickViewListener listener)Added in version 6.26.0
Add a IBarcodePickViewListener to the mode. User actions will be notified to the listener.
- RemoveListener()
void
RemoveListener(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.