SpatialInteractionManager.SourceLost Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsqu’une main, un contrôleur de mouvement ou une source vocale n’est plus disponible.
// Register
event_token SourceLost(TypedEventHandler<SpatialInteractionManager, SpatialInteractionSourceEventArgs const&> const& handler) const;
// Revoke with event_token
void SourceLost(event_token const* cookie) const;
// Revoke with event_revoker
SpatialInteractionManager::SourceLost_revoker SourceLost(auto_revoke_t, TypedEventHandler<SpatialInteractionManager, SpatialInteractionSourceEventArgs const&> const& handler) const;
public event TypedEventHandler<SpatialInteractionManager,SpatialInteractionSourceEventArgs> SourceLost;
function onSourceLost(eventArgs) { /* Your code */ }
spatialInteractionManager.addEventListener("sourcelost", onSourceLost);
spatialInteractionManager.removeEventListener("sourcelost", onSourceLost);
- or -
spatialInteractionManager.onsourcelost = onSourceLost;
Public Custom Event SourceLost As TypedEventHandler(Of SpatialInteractionManager, SpatialInteractionSourceEventArgs)