StorageLibrary.DefinitionChanged 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 list of folders in the current library changes.
// Register
event_token DefinitionChanged(TypedEventHandler<StorageLibrary, IInspectable const&> const& handler) const;
// Revoke with event_token
void DefinitionChanged(event_token const* cookie) const;
// Revoke with event_revoker
StorageLibrary::DefinitionChanged_revoker DefinitionChanged(auto_revoke_t, TypedEventHandler<StorageLibrary, IInspectable const&> const& handler) const;
public event TypedEventHandler<StorageLibrary,object> DefinitionChanged;
function onDefinitionChanged(eventArgs) { /* Your code */ }
storageLibrary.addEventListener("definitionchanged", onDefinitionChanged);
storageLibrary.removeEventListener("definitionchanged", onDefinitionChanged);
- or -
storageLibrary.ondefinitionchanged = onDefinitionChanged;
Public Custom Event DefinitionChanged As TypedEventHandler(Of StorageLibrary, Object)
Event Type
TypedEventHandler<StorageLibrary,IInspectable>