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