SpatialLocator.LocatabilityChanged Kejadian
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Terjadi ketika status sistem lokasi spasial berubah.
// 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)
Jenis Acara
TypedEventHandler<SpatialLocator,IInspectable>