PivotPanel.HorizontalSnapPointsChanged 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 HorizontalSnapPointsChanged(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
void HorizontalSnapPointsChanged(event_token const* cookie) const;
// Revoke with event_revoker
PivotPanel::HorizontalSnapPointsChanged_revoker HorizontalSnapPointsChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public event System.EventHandler<object> HorizontalSnapPointsChanged;
function onHorizontalSnapPointsChanged(eventArgs) { /* Your code */ }
pivotPanel.addEventListener("horizontalsnappointschanged", onHorizontalSnapPointsChanged);
pivotPanel.removeEventListener("horizontalsnappointschanged", onHorizontalSnapPointsChanged);
- or -
pivotPanel.onhorizontalsnappointschanged = onHorizontalSnapPointsChanged;
Public Custom Event HorizontalSnapPointsChanged As EventHandler(Of Object) Implements HorizontalSnapPointsChanged