ClosedCaptionProperties.PropertiesChanged 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
static event_token PropertiesChanged(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
static void PropertiesChanged(event_token const* cookie) const;
// Revoke with event_revoker
static ClosedCaptionProperties::PropertiesChanged_revoker PropertiesChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public static event System.EventHandler<object> PropertiesChanged;
function onPropertiesChanged(eventArgs) { /* Your code */ }
Windows.Media.ClosedCaptioning.ClosedCaptionProperties.addEventListener("propertieschanged", onPropertiesChanged);
Windows.Media.ClosedCaptioning.ClosedCaptionProperties.removeEventListener("propertieschanged", onPropertiesChanged);
- or -
Windows.Media.ClosedCaptioning.ClosedCaptionProperties.onpropertieschanged = onPropertiesChanged;
Public Shared Custom Event PropertiesChanged As EventHandler(Of Object)