SysHolographicDisplayWatcher.Stopped 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.
The event that is raised when holographic display watching has stopped.
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 Stopped(TypedEventHandler<SysHolographicDisplayWatcher, IInspectable const&> const& handler) const;
// Revoke with event_token
void Stopped(event_token const* cookie) const;
// Revoke with event_revoker
SysHolographicDisplayWatcher::Stopped_revoker Stopped(auto_revoke_t, TypedEventHandler<SysHolographicDisplayWatcher, IInspectable const&> const& handler) const;
public event TypedEventHandler<SysHolographicDisplayWatcher,object> Stopped;
function onStopped(eventArgs) { /* Your code */ }
sysHolographicDisplayWatcher.addEventListener("stopped", onStopped);
sysHolographicDisplayWatcher.removeEventListener("stopped", onStopped);
- or -
sysHolographicDisplayWatcher.onstopped = onStopped;
Public Custom Event Stopped As TypedEventHandler(Of SysHolographicDisplayWatcher, Object)
Event Type
TypedEventHandler<SysHolographicDisplayWatcher,IInspectable>