SpatialLocator.LocatabilityChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
TypedEventHandler<SpatialLocator,IInspectable>