BarcodeScannerProviderConnection.GetBarcodeSymbologyAttributesRequested Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Déclenché lorsque l’application cliente tente d’obtenir les attributs d’une symbologie de code-barres.
// 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)
Type d'événement
TypedEventHandler<BarcodeScannerProviderConnection,BarcodeScannerGetSymbologyAttributesRequestEventArgs>