SpatialEntityWatcher.EnumerationCompleted Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Evento generato quando è stata completata la riproduzione iniziale delle modifiche precedenti all'archivio entità spaziale.
// Register
event_token EnumerationCompleted(TypedEventHandler<SpatialEntityWatcher, IInspectable const&> const& handler) const;
// Revoke with event_token
void EnumerationCompleted(event_token const* cookie) const;
// Revoke with event_revoker
SpatialEntityWatcher::EnumerationCompleted_revoker EnumerationCompleted(auto_revoke_t, TypedEventHandler<SpatialEntityWatcher, IInspectable const&> const& handler) const;
public event TypedEventHandler<SpatialEntityWatcher,object> EnumerationCompleted;
function onEnumerationCompleted(eventArgs) { /* Your code */ }
spatialEntityWatcher.addEventListener("enumerationcompleted", onEnumerationCompleted);
spatialEntityWatcher.removeEventListener("enumerationcompleted", onEnumerationCompleted);
- or -
spatialEntityWatcher.onenumerationcompleted = onEnumerationCompleted;
Public Custom Event EnumerationCompleted As TypedEventHandler(Of SpatialEntityWatcher, Object)