Partager via


Battery.ReportUpdated Événement

Définition

Se produit lorsque la charge, la capacité ou la status d’une batterie change.

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

Type d'événement

Remarques

L’événement ReportUpdated est déclenché par toute modification de status, de débit ou de capacité d’alimentation sur l’une des batteries connectées à l’appareil. Cela se produit généralement immédiatement pour les changements d’état, et périodiquement pour tous les autres changements.

S’applique à

Voir aussi