AdControl.OnManipulationStateChanged 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 OnManipulationStateChanged(EventHandler<ManipulationStateChangedEventArgs> const& handler) const;
// Revoke with event_token
void OnManipulationStateChanged(event_token const* cookie) const;
// Revoke with event_revoker
AdControl::OnManipulationStateChanged_revoker OnManipulationStateChanged(auto_revoke_t, EventHandler<ManipulationStateChangedEventArgs> const& handler) const;
public event System.EventHandler<ManipulationStateChangedEventArgs> OnManipulationStateChanged;
function onOnManipulationStateChanged(eventArgs) { /* Your code */ }
adControl.addEventListener("onmanipulationstatechanged", onOnManipulationStateChanged);
adControl.removeEventListener("onmanipulationstatechanged", onOnManipulationStateChanged);
- or -
adControl.ononmanipulationstatechanged = onOnManipulationStateChanged;
Public Custom Event OnManipulationStateChanged As EventHandler(Of ManipulationStateChangedEventArgs)