IStorageItemInformation.PropertiesUpdated イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
アイテムのプロパティが 1 つ以上更新されたときに発生します。
// 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>