SysHolographicWindowingEnvironment.StatusChanged Event

Definition

The event that is raised when the status of the holographic shell is changed.

Important

This API is available only to components of the Windows operating system. Calls to these APIs will fail at runtime for all other processes. These APIs may be modified or removed in future Windows releases.

// Register
event_token StatusChanged(TypedEventHandler<SysHolographicWindowingEnvironment, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
SysHolographicWindowingEnvironment::StatusChanged_revoker StatusChanged(auto_revoke_t, TypedEventHandler<SysHolographicWindowingEnvironment, IInspectable const&> const& handler) const;
public event TypedEventHandler<SysHolographicWindowingEnvironment,object> StatusChanged;
function onStatusChanged(eventArgs) { /* Your code */ }
sysHolographicWindowingEnvironment.addEventListener("statuschanged", onStatusChanged);
sysHolographicWindowingEnvironment.removeEventListener("statuschanged", onStatusChanged);
- or -
sysHolographicWindowingEnvironment.onstatuschanged = onStatusChanged;
Public Custom Event StatusChanged As TypedEventHandler(Of SysHolographicWindowingEnvironment, Object) 

Event Type

Applies to