次の方法で共有


Battery.ReportUpdated イベント

定義

バッテリーの充電、容量、または状態が変化したときに発生します。

// Register
event_token ReportUpdated(TypedEventHandler<Battery, IInspectable const&> const& handler) const;

// Revoke with event_token
void ReportUpdated(event_token const* cookie) const;

// Revoke with event_revoker
Battery::ReportUpdated_revoker ReportUpdated(auto_revoke_t, TypedEventHandler<Battery, IInspectable const&> const& handler) const;
public event TypedEventHandler<Battery,object> ReportUpdated;
function onReportUpdated(eventArgs) { /* Your code */ }
battery.addEventListener("reportupdated", onReportUpdated);
battery.removeEventListener("reportupdated", onReportUpdated);
- or -
battery.onreportupdated = onReportUpdated;
Public Custom Event ReportUpdated As TypedEventHandler(Of Battery, Object) 

イベントの種類

注釈

ReportUpdated イベントは、デバイスに接続されているバッテリの状態、充電率、または電源容量の変更によってトリガーされます。 通常、これは、ステータスの変更についてはすぐに、その他のすべての変更については定期的に発生します。

適用対象

こちらもご覧ください