Share via


DisplayMuxDevice.Changed Event

Definition

// Register
event_token Changed(TypedEventHandler<DisplayMuxDevice, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
DisplayMuxDevice::Changed_revoker Changed(auto_revoke_t, TypedEventHandler<DisplayMuxDevice, IInspectable const&> const& handler) const;
public event TypedEventHandler<DisplayMuxDevice,object> Changed;
function onChanged(eventArgs) { /* Your code */ }
displayMuxDevice.addEventListener("changed", onChanged);
displayMuxDevice.removeEventListener("changed", onChanged);
- or -
displayMuxDevice.onchanged = onChanged;
Public Custom Event Changed As TypedEventHandler(Of DisplayMuxDevice, Object) 

Event Type

Applies to