BarcodeScannerProviderConnection.SetBarcodeSymbologyAttributesRequested 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.
Raised when the client app attempts to set the attributes of a barcode symbology.
// Register
event_token SetBarcodeSymbologyAttributesRequested(TypedEventHandler<BarcodeScannerProviderConnection, BarcodeScannerSetSymbologyAttributesRequestEventArgs const&> const& handler) const;
// Revoke with event_token
void SetBarcodeSymbologyAttributesRequested(event_token const* cookie) const;
// Revoke with event_revoker
BarcodeScannerProviderConnection::SetBarcodeSymbologyAttributesRequested_revoker SetBarcodeSymbologyAttributesRequested(auto_revoke_t, TypedEventHandler<BarcodeScannerProviderConnection, BarcodeScannerSetSymbologyAttributesRequestEventArgs const&> const& handler) const;
public event TypedEventHandler<BarcodeScannerProviderConnection,BarcodeScannerSetSymbologyAttributesRequestEventArgs> SetBarcodeSymbologyAttributesRequested;
function onSetBarcodeSymbologyAttributesRequested(eventArgs) { /* Your code */ }
barcodeScannerProviderConnection.addEventListener("setbarcodesymbologyattributesrequested", onSetBarcodeSymbologyAttributesRequested);
barcodeScannerProviderConnection.removeEventListener("setbarcodesymbologyattributesrequested", onSetBarcodeSymbologyAttributesRequested);
- or -
barcodeScannerProviderConnection.onsetbarcodesymbologyattributesrequested = onSetBarcodeSymbologyAttributesRequested;
Public Custom Event SetBarcodeSymbologyAttributesRequested As TypedEventHandler(Of BarcodeScannerProviderConnection, BarcodeScannerSetSymbologyAttributesRequestEventArgs)
Event Type
TypedEventHandler<BarcodeScannerProviderConnection,BarcodeScannerSetSymbologyAttributesRequestEventArgs>