MediaElement.RateChanged 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.
Occurs when PlaybackRate or DefaultPlaybackRate value changes.
public:
virtual event RateChangedRoutedEventHandler ^ RateChanged;
// Register
event_token RateChanged(RateChangedRoutedEventHandler const& handler) const;
// Revoke with event_token
void RateChanged(event_token const* cookie) const;
// Revoke with event_revoker
MediaElement::RateChanged_revoker RateChanged(auto_revoke_t, RateChangedRoutedEventHandler const& handler) const;
public event RateChangedRoutedEventHandler RateChanged;
function onRateChanged(eventArgs) { /* Your code */ }
mediaElement.addEventListener("ratechanged", onRateChanged);
mediaElement.removeEventListener("ratechanged", onRateChanged);
- or -
mediaElement.onratechanged = onRateChanged;
Public Custom Event RateChanged As RateChangedRoutedEventHandler
<MediaElement RateChanged="eventhandler"/>