Table of Contents
WebView.Closing Event

Occurs when the WebView is about to close.

Syntax
 public event CancelEventHandler Closing;
Remarks

To cancel the closure of the WebView, set the Cancel property of the CancelEventArgs passed to your event handler to true.

Note    This event is only fired when the WebView is closed by JavaScript. It is not fired if Close method is called directly.
See Also