Popup.ActualPlacementChanged 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.
// Register
event_token ActualPlacementChanged(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
void ActualPlacementChanged(event_token const* cookie) const;
// Revoke with event_revoker
Popup::ActualPlacementChanged_revoker ActualPlacementChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public event System.EventHandler<object> ActualPlacementChanged;
function onActualPlacementChanged(eventArgs) { /* Your code */ }
popup.addEventListener("actualplacementchanged", onActualPlacementChanged);
popup.removeEventListener("actualplacementchanged", onActualPlacementChanged);
- or -
popup.onactualplacementchanged = onActualPlacementChanged;
Public Custom Event ActualPlacementChanged As EventHandler(Of Object)
Event Type
Windows requirements
Device family |
Windows 11 (introduced in 10.0.22000.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v14.0)
|