BarcodeScannerProviderConnection.SetBarcodeSymbologyAttributesRequested イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
クライアント アプリがバーコード シンボルの属性を設定しようとしたときに発生します。
// 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)
イベントの種類
TypedEventHandler<BarcodeScannerProviderConnection,BarcodeScannerSetSymbologyAttributesRequestEventArgs>