SysSpatialInputDeviceWatcher.Removed Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
O evento gerado quando um dispositivo de entrada espacial é removido.
Importante
Essa API está disponível apenas para componentes do sistema operacional Windows. As chamadas para essas APIs falharão em runtime para todos os outros processos. Essas APIs podem ser modificadas ou removidas em versões futuras do Windows.
// Register
event_token Removed(TypedEventHandler<SysSpatialInputDeviceWatcher, SysSpatialInputDevice const&> const& handler) const;
// Revoke with event_token
void Removed(event_token const* cookie) const;
// Revoke with event_revoker
SysSpatialInputDeviceWatcher::Removed_revoker Removed(auto_revoke_t, TypedEventHandler<SysSpatialInputDeviceWatcher, SysSpatialInputDevice const&> const& handler) const;
public event TypedEventHandler<SysSpatialInputDeviceWatcher,SysSpatialInputDevice> Removed;
function onRemoved(eventArgs) { /* Your code */ }
sysSpatialInputDeviceWatcher.addEventListener("removed", onRemoved);
sysSpatialInputDeviceWatcher.removeEventListener("removed", onRemoved);
- or -
sysSpatialInputDeviceWatcher.onremoved = onRemoved;
Public Custom Event Removed As TypedEventHandler(Of SysSpatialInputDeviceWatcher, SysSpatialInputDevice)