다음을 통해 공유


IStorageItemInformation.ThumbnailUpdated 이벤트

정의

항목의 축소판 그림이 업데이트되거나 더 나은 품질의 썸네일을 사용할 수 있을 때 발생합니다.

// 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) 

이벤트 유형

적용 대상