IScrollControllerPanningInfo.Changed Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when any IScrollControllerPanningInfo
property changes.
// 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)
Event Type
TypedEventHandler<IScrollControllerPanningInfo,IInspectable>