BarcodeScannerProviderConnection.GetBarcodeSymbologyAttributesRequested 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 get the attributes of a barcode symbology.
// Register
event_token GetBarcodeSymbologyAttributesRequested(TypedEventHandler<BarcodeScannerProviderConnection, BarcodeScannerGetSymbologyAttributesRequestEventArgs const&> const& handler) const;
// Revoke with event_token
void GetBarcodeSymbologyAttributesRequested(event_token const* cookie) const;
// Revoke with event_revoker
BarcodeScannerProviderConnection::GetBarcodeSymbologyAttributesRequested_revoker GetBarcodeSymbologyAttributesRequested(auto_revoke_t, TypedEventHandler<BarcodeScannerProviderConnection, BarcodeScannerGetSymbologyAttributesRequestEventArgs const&> const& handler) const;
public event TypedEventHandler<BarcodeScannerProviderConnection,BarcodeScannerGetSymbologyAttributesRequestEventArgs> GetBarcodeSymbologyAttributesRequested;
function onGetBarcodeSymbologyAttributesRequested(eventArgs) { /* Your code */ }
barcodeScannerProviderConnection.addEventListener("getbarcodesymbologyattributesrequested", onGetBarcodeSymbologyAttributesRequested);
barcodeScannerProviderConnection.removeEventListener("getbarcodesymbologyattributesrequested", onGetBarcodeSymbologyAttributesRequested);
- or -
barcodeScannerProviderConnection.ongetbarcodesymbologyattributesrequested = onGetBarcodeSymbologyAttributesRequested;
Public Custom Event GetBarcodeSymbologyAttributesRequested As TypedEventHandler(Of BarcodeScannerProviderConnection, BarcodeScannerGetSymbologyAttributesRequestEventArgs)
Event Type
TypedEventHandler<BarcodeScannerProviderConnection,BarcodeScannerGetSymbologyAttributesRequestEventArgs>