PivotPanel.VerticalSnapPointsChanged 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.
This property is reserved for internal use and is not intended to be used in your code.
// Register
event_token VerticalSnapPointsChanged(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
void VerticalSnapPointsChanged(event_token const* cookie) const;
// Revoke with event_revoker
PivotPanel::VerticalSnapPointsChanged_revoker VerticalSnapPointsChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public event System.EventHandler<object> VerticalSnapPointsChanged;
function onVerticalSnapPointsChanged(eventArgs) { /* Your code */ }
pivotPanel.addEventListener("verticalsnappointschanged", onVerticalSnapPointsChanged);
pivotPanel.removeEventListener("verticalsnappointschanged", onVerticalSnapPointsChanged);
- or -
pivotPanel.onverticalsnappointschanged = onVerticalSnapPointsChanged;
Public Custom Event VerticalSnapPointsChanged As EventHandler(Of Object) Implements VerticalSnapPointsChanged