Battery.RemainingChargePercentChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when the value of RemainingChargePercent decreases by 1%.
// Register
event_token RemainingChargePercentChanged(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
void RemainingChargePercentChanged(event_token const* cookie) const;
// Revoke with event_revoker
Battery::RemainingChargePercentChanged_revoker RemainingChargePercentChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public event System.EventHandler<object> RemainingChargePercentChanged;
function onRemainingChargePercentChanged(eventArgs) { /* Your code */ }
battery.addEventListener("remainingchargepercentchanged", onRemainingChargePercentChanged);
battery.removeEventListener("remainingchargepercentchanged", onRemainingChargePercentChanged);
- or -
battery.onremainingchargepercentchanged = onRemainingChargePercentChanged;
Public Custom Event RemainingChargePercentChanged As EventHandler(Of Object)