IStorageItemInformation.PropertiesUpdated 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 one or more of the item's properties is updated.
// Register
event_token PropertiesUpdated(TypedEventHandler<IStorageItemInformation, IInspectable const&> const& handler) const;
// Revoke with event_token
void PropertiesUpdated(event_token const* cookie) const;
// Revoke with event_revoker
IStorageItemInformation::PropertiesUpdated_revoker PropertiesUpdated(auto_revoke_t, TypedEventHandler<IStorageItemInformation, IInspectable const&> const& handler) const;
event TypedEventHandler<IStorageItemInformation,object> PropertiesUpdated;
function onPropertiesUpdated(eventArgs) { /* Your code */ }
iStorageItemInformation.addEventListener("propertiesupdated", onPropertiesUpdated);
iStorageItemInformation.removeEventListener("propertiesupdated", onPropertiesUpdated);
- or -
iStorageItemInformation.onpropertiesupdated = onPropertiesUpdated;
Event PropertiesUpdated As TypedEventHandler(Of IStorageItemInformation, Object)
Event Type
TypedEventHandler<IStorageItemInformation,IInspectable>