PenDockListener.IsSupportedChanged イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ペン ドッキング イベントの可用性が変更されたときに発生します (ペンの設定は、ユーザーまたはシステム サポートの変更によって変更されます)。
// Register
event_token IsSupportedChanged(TypedEventHandler<PenDockListener, IInspectable const&> const& handler) const;
// Revoke with event_token
void IsSupportedChanged(event_token const* cookie) const;
// Revoke with event_revoker
PenDockListener::IsSupportedChanged_revoker IsSupportedChanged(auto_revoke_t, TypedEventHandler<PenDockListener, IInspectable const&> const& handler) const;
public event TypedEventHandler<PenDockListener,object> IsSupportedChanged;
function onIsSupportedChanged(eventArgs) { /* Your code */ }
penDockListener.addEventListener("issupportedchanged", onIsSupportedChanged);
penDockListener.removeEventListener("issupportedchanged", onIsSupportedChanged);
- or -
penDockListener.onissupportedchanged = onIsSupportedChanged;
Public Custom Event IsSupportedChanged As TypedEventHandler(Of PenDockListener, Object)
イベントの種類
TypedEventHandler<PenDockListener,IInspectable>