共用方式為


SpatialEntityWatcher.EnumerationCompleted 事件

定義

當空間實體存放區變更的初始重新執行完成時所引發的事件。

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

事件類型

適用於