CashDrawerEventSource.DrawerOpened 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 cash drawer is opened.
// Register
event_token DrawerOpened(TypedEventHandler<CashDrawerEventSource, CashDrawerOpenedEventArgs const&> const& handler) const;
// Revoke with event_token
void DrawerOpened(event_token const* cookie) const;
// Revoke with event_revoker
CashDrawerEventSource::DrawerOpened_revoker DrawerOpened(auto_revoke_t, TypedEventHandler<CashDrawerEventSource, CashDrawerOpenedEventArgs const&> const& handler) const;
public event TypedEventHandler<CashDrawerEventSource,CashDrawerOpenedEventArgs> DrawerOpened;
function onDrawerOpened(eventArgs) { /* Your code */ }
cashDrawerEventSource.addEventListener("draweropened", onDrawerOpened);
cashDrawerEventSource.removeEventListener("draweropened", onDrawerOpened);
- or -
cashDrawerEventSource.ondraweropened = onDrawerOpened;
Public Custom Event DrawerOpened As TypedEventHandler(Of CashDrawerEventSource, CashDrawerOpenedEventArgs)