Share via


SpatialEntityWatcher.Updated Evento

Definición

Evento que se genera cuando una entidad espacial existente tiene sus metadatos actualizados por un participante.

// Register
event_token Updated(TypedEventHandler<SpatialEntityWatcher, SpatialEntityUpdatedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
SpatialEntityWatcher::Updated_revoker Updated(auto_revoke_t, TypedEventHandler<SpatialEntityWatcher, SpatialEntityUpdatedEventArgs const&> const& handler) const;
public event TypedEventHandler<SpatialEntityWatcher,SpatialEntityUpdatedEventArgs> Updated;
function onUpdated(eventArgs) { /* Your code */ }
spatialEntityWatcher.addEventListener("updated", onUpdated);
spatialEntityWatcher.removeEventListener("updated", onUpdated);
- or -
spatialEntityWatcher.onupdated = onUpdated;
Public Custom Event Updated As TypedEventHandler(Of SpatialEntityWatcher, SpatialEntityUpdatedEventArgs) 

Tipo de evento

Comentarios

Tenga en cuenta que los ajustes en la posición de un delimitador espacial que se producen cuando el dispositivo aprende más sobre su entorno no están representados por este evento Actualizado. Las aplicaciones deben reaccionar ante los cambios en el sistema de coordenadas del delimitador de cada fotograma, tal como es necesario para los delimitadores locales.

Se aplica a