IStorageItemInformation.PropertiesUpdated 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生于更新一或多個專案的屬性時。
// 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)
事件類型
TypedEventHandler<IStorageItemInformation,IInspectable>