PenDockListener.IsSupportedChanged Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsque la disponibilité de l’événement d’ancrage du stylet change (les paramètres du stylet sont modifiés par l’utilisateur ou les modifications de prise en charge du système).
// 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)
Type d'événement
TypedEventHandler<PenDockListener,IInspectable>