CashDrawerEventSource.DrawerOpened Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsque le tiroir-caisse est ouvert.
// 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)