IScrollController.CanScrollChanged 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 the CanScroll
property value has changed.
// Register
event_token CanScrollChanged(TypedEventHandler<IScrollController, IInspectable const&> const& handler) const;
// Revoke with event_token
void CanScrollChanged(event_token const* cookie) const;
// Revoke with event_revoker
IScrollController::CanScrollChanged_revoker CanScrollChanged(auto_revoke_t, TypedEventHandler<IScrollController, IInspectable const&> const& handler) const;
event TypedEventHandler<IScrollController,object> CanScrollChanged;
function onCanScrollChanged(eventArgs) { /* Your code */ }
iScrollController.addEventListener("canscrollchanged", onCanScrollChanged);
iScrollController.removeEventListener("canscrollchanged", onCanScrollChanged);
- or -
iScrollController.oncanscrollchanged = onCanScrollChanged;
Event CanScrollChanged As TypedEventHandler(Of IScrollController, Object)
Event Type
TypedEventHandler<IScrollController,IInspectable>