Condividi tramite


DisplayAreaWatcher.Added Evento

Definizione

Si verifica quando un DisplayArea oggetto viene aggiunto alla raccolta di aree di visualizzazione restituite da DisplayArea.FindAll.

// Register
event_token Added(TypedEventHandler<DisplayAreaWatcher, DisplayArea const&> const& handler) const;

// Revoke with event_token
void Added(event_token const* cookie) const;

// Revoke with event_revoker
DisplayAreaWatcher::Added_revoker Added(auto_revoke_t, TypedEventHandler<DisplayAreaWatcher, DisplayArea const&> const& handler) const;
public event TypedEventHandler<DisplayAreaWatcher,DisplayArea> Added;
function onAdded(eventArgs) { /* Your code */ }
displayAreaWatcher.addEventListener("added", onAdded);
displayAreaWatcher.removeEventListener("added", onAdded);
- or -
displayAreaWatcher.onadded = onAdded;
Public Custom Event Added As TypedEventHandler(Of DisplayAreaWatcher, DisplayArea) 

Tipo evento

Si applica a

Vedi anche