BarcodeScannerProviderConnection.SetBarcodeSymbologyAttributesRequested Ereignis
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Wird ausgelöst, wenn die Client-App versucht, die Attribute einer Barcodesymbologie festzulegen.
// 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)
Ereignistyp
TypedEventHandler<BarcodeScannerProviderConnection,BarcodeScannerSetSymbologyAttributesRequestEventArgs>