StackPanel.HorizontalSnapPointsChanged Event

Definition

Occurs when the measurements for horizontal snap points change.

// Register
event_token HorizontalSnapPointsChanged(EventHandler<IInspectable> const& handler) const;

// Revoke with event_token
void HorizontalSnapPointsChanged(event_token const* cookie) const;

// Revoke with event_revoker
StackPanel::HorizontalSnapPointsChanged_revoker HorizontalSnapPointsChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public event System.EventHandler<object> HorizontalSnapPointsChanged;
function onHorizontalSnapPointsChanged(eventArgs) { /* Your code */ }
stackPanel.addEventListener("horizontalsnappointschanged", onHorizontalSnapPointsChanged);
stackPanel.removeEventListener("horizontalsnappointschanged", onHorizontalSnapPointsChanged);
- or -
stackPanel.onhorizontalsnappointschanged = onHorizontalSnapPointsChanged;
Public Custom Event HorizontalSnapPointsChanged As EventHandler(Of Object) Implements HorizontalSnapPointsChanged
<StackPanel HorizontalSnapPointsChanged="eventhandler" />

Event Type

Implements

Applies to