StorageLibrary.DefinitionChanged Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre quando a lista de pastas na biblioteca atual é alterada.
// 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)
Tipo de evento
TypedEventHandler<StorageLibrary,IInspectable>