SpatialEntityWatcher.EnumerationCompleted Event

Definition

The event that is raised when the initial replay of prior changes to the spatial entity store has completed.

// 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) 

Event Type

Applies to