ClaimedBarcodeScanner.ImagePreviewReceived Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when the device receives the bitmap image of the scan.
// Register
event_token ImagePreviewReceived(TypedEventHandler<ClaimedBarcodeScanner, BarcodeScannerImagePreviewReceivedEventArgs const&> const& handler) const;
// Revoke with event_token
void ImagePreviewReceived(event_token const* cookie) const;
// Revoke with event_revoker
ClaimedBarcodeScanner::ImagePreviewReceived_revoker ImagePreviewReceived(auto_revoke_t, TypedEventHandler<ClaimedBarcodeScanner, BarcodeScannerImagePreviewReceivedEventArgs const&> const& handler) const;
public event TypedEventHandler<ClaimedBarcodeScanner,BarcodeScannerImagePreviewReceivedEventArgs> ImagePreviewReceived;
function onImagePreviewReceived(eventArgs) { /* Your code */ }
claimedBarcodeScanner.addEventListener("imagepreviewreceived", onImagePreviewReceived);
claimedBarcodeScanner.removeEventListener("imagepreviewreceived", onImagePreviewReceived);
- or -
claimedBarcodeScanner.onimagepreviewreceived = onImagePreviewReceived;
Public Custom Event ImagePreviewReceived As TypedEventHandler(Of ClaimedBarcodeScanner, BarcodeScannerImagePreviewReceivedEventArgs)