SpatialLocator.LocatabilityChanged Ereignis
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Tritt auf, wenn sich der Zustand des räumlichen Standortsystems ändert.
// 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)
Ereignistyp
TypedEventHandler<SpatialLocator,IInspectable>