CashDrawer.StatusUpdated 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.
Indicates there has been a change in the power availability status of the drawer.
// Register
event_token StatusUpdated(TypedEventHandler<CashDrawer, CashDrawerStatusUpdatedEventArgs const&> const& handler) const;
// Revoke with event_token
void StatusUpdated(event_token const* cookie) const;
// Revoke with event_revoker
CashDrawer::StatusUpdated_revoker StatusUpdated(auto_revoke_t, TypedEventHandler<CashDrawer, CashDrawerStatusUpdatedEventArgs const&> const& handler) const;
public event TypedEventHandler<CashDrawer,CashDrawerStatusUpdatedEventArgs> StatusUpdated;
function onStatusUpdated(eventArgs) { /* Your code */ }
cashDrawer.addEventListener("statusupdated", onStatusUpdated);
cashDrawer.removeEventListener("statusupdated", onStatusUpdated);
- or -
cashDrawer.onstatusupdated = onStatusUpdated;
Public Custom Event StatusUpdated As TypedEventHandler(Of CashDrawer, CashDrawerStatusUpdatedEventArgs)