AppointmentStore.StoreChanged 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 AppointmentStore changes.
// Register
event_token StoreChanged(TypedEventHandler<AppointmentStore, AppointmentStoreChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void StoreChanged(event_token const* cookie) const;
// Revoke with event_revoker
AppointmentStore::StoreChanged_revoker StoreChanged(auto_revoke_t, TypedEventHandler<AppointmentStore, AppointmentStoreChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<AppointmentStore,AppointmentStoreChangedEventArgs> StoreChanged;
function onStoreChanged(eventArgs) { /* Your code */ }
appointmentStore.addEventListener("storechanged", onStoreChanged);
appointmentStore.removeEventListener("storechanged", onStoreChanged);
- or -
appointmentStore.onstorechanged = onStoreChanged;
Public Custom Event StoreChanged As TypedEventHandler(Of AppointmentStore, AppointmentStoreChangedEventArgs)
Event Type
Windows requirements
App capabilities |
appointmentsSystem
|