PenButtonListener.IsSupportedChanged Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica quando cambia la disponibilità degli eventi del pulsante penna (le impostazioni della penna vengono modificate dall'utente o dal supporto del sistema).
// 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)
Tipo evento
TypedEventHandler<PenButtonListener,IInspectable>