HdmiDisplayInformation.DisplayModesChanged 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.
Event raised when the display mode changes.
// Register
event_token DisplayModesChanged(TypedEventHandler<HdmiDisplayInformation, IInspectable const&> const& handler) const;
// Revoke with event_token
void DisplayModesChanged(event_token const* cookie) const;
// Revoke with event_revoker
HdmiDisplayInformation::DisplayModesChanged_revoker DisplayModesChanged(auto_revoke_t, TypedEventHandler<HdmiDisplayInformation, IInspectable const&> const& handler) const;
public event TypedEventHandler<HdmiDisplayInformation,object> DisplayModesChanged;
function onDisplayModesChanged(eventArgs) { /* Your code */ }
hdmiDisplayInformation.addEventListener("displaymodeschanged", onDisplayModesChanged);
hdmiDisplayInformation.removeEventListener("displaymodeschanged", onDisplayModesChanged);
- or -
hdmiDisplayInformation.ondisplaymodeschanged = onDisplayModesChanged;
Public Custom Event DisplayModesChanged As TypedEventHandler(Of HdmiDisplayInformation, Object)
Event Type
TypedEventHandler<HdmiDisplayInformation,IInspectable>