SpatialLocator.LocatabilityChanged Event

Definition

Occurs when the state of the spatial location system changes.

// Register
event_token LocatabilityChanged(TypedEventHandler<SpatialLocator, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
SpatialLocator::LocatabilityChanged_revoker LocatabilityChanged(auto_revoke_t, TypedEventHandler<SpatialLocator, IInspectable const&> const& handler) const;
public event TypedEventHandler<SpatialLocator,object> LocatabilityChanged;
function onLocatabilityChanged(eventArgs) { /* Your code */ }
spatialLocator.addEventListener("locatabilitychanged", onLocatabilityChanged);
spatialLocator.removeEventListener("locatabilitychanged", onLocatabilityChanged);
- or -
spatialLocator.onlocatabilitychanged = onLocatabilityChanged;
Public Custom Event LocatabilityChanged As TypedEventHandler(Of SpatialLocator, Object) 

Event Type

Applies to