WebUIView.Closed Event

Definition

Occurs when the view has been closed.

// Register
event_token Closed(TypedEventHandler<WebUIView, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
WebUIView::Closed_revoker Closed(auto_revoke_t, TypedEventHandler<WebUIView, IInspectable const&> const& handler) const;
public event TypedEventHandler<WebUIView,object> Closed;
function onClosed(eventArgs) { /* Your code */ }
webUIView.addEventListener("closed", onClosed);
webUIView.removeEventListener("closed", onClosed);
- or -
webUIView.onclosed = onClosed;
Public Custom Event Closed As TypedEventHandler(Of WebUIView, Object) 

Event Type

Applies to