IStorageItemInformation.ThumbnailUpdated 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.
Fires when the item's thumbnail is updated or a better quality thumbnail is available.
// Register
event_token ThumbnailUpdated(TypedEventHandler<IStorageItemInformation, IInspectable const&> const& handler) const;
// Revoke with event_token
void ThumbnailUpdated(event_token const* cookie) const;
// Revoke with event_revoker
IStorageItemInformation::ThumbnailUpdated_revoker ThumbnailUpdated(auto_revoke_t, TypedEventHandler<IStorageItemInformation, IInspectable const&> const& handler) const;
event TypedEventHandler<IStorageItemInformation,object> ThumbnailUpdated;
function onThumbnailUpdated(eventArgs) { /* Your code */ }
iStorageItemInformation.addEventListener("thumbnailupdated", onThumbnailUpdated);
iStorageItemInformation.removeEventListener("thumbnailupdated", onThumbnailUpdated);
- or -
iStorageItemInformation.onthumbnailupdated = onThumbnailUpdated;
Event ThumbnailUpdated As TypedEventHandler(Of IStorageItemInformation, Object)
Event Type
TypedEventHandler<IStorageItemInformation,IInspectable>