| WebViewDocumentLoading Event | 
 
            Occurs when a document starts loading.
            
 
    Namespace: 
   Eto.Forms
    Assembly:
   Eto (in Eto.dll) Version: 2.5.3-dev
 Syntax
Syntaxpublic event EventHandler<WebViewLoadingEventArgs> DocumentLoading
Public Event DocumentLoading As EventHandler(Of WebViewLoadingEventArgs)
member DocumentLoading : IEvent<EventHandler<WebViewLoadingEventArgs>,
    WebViewLoadingEventArgs>
Value
Type: 
SystemEventHandlerWebViewLoadingEventArgs Remarks
Remarks
            This fires when the document shown is changed, and notifies which url is being loaded.
            You can cancel the loading of a page through this event, though you should check the 
IsMainFrame
            to determine if it is for the main frame, or a child frame.
            
 See Also
See Also