IScrollControllerPanningInfo.Changed Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre quando qualquer propriedade IScrollControllerPanningInfo
é alterada.
// Register
event_token Changed(TypedEventHandler<IScrollControllerPanningInfo, IInspectable const&> const& handler) const;
// Revoke with event_token
void Changed(event_token const* cookie) const;
// Revoke with event_revoker
IScrollControllerPanningInfo::Changed_revoker Changed(auto_revoke_t, TypedEventHandler<IScrollControllerPanningInfo, IInspectable const&> const& handler) const;
event TypedEventHandler<IScrollControllerPanningInfo,object> Changed;
function onChanged(eventArgs) { /* Your code */ }
iScrollControllerPanningInfo.addEventListener("changed", onChanged);
iScrollControllerPanningInfo.removeEventListener("changed", onChanged);
- or -
iScrollControllerPanningInfo.onchanged = onChanged;
Event Changed As TypedEventHandler(Of IScrollControllerPanningInfo, Object)
Tipo de evento
TypedEventHandler<IScrollControllerPanningInfo,IInspectable>