| WebViewOpenNewWindow Event | 
 
            Occurs when the page prompts to open a link in a new window
            
 
    Namespace: 
   Eto.Forms
    Assembly:
   Eto (in Eto.dll) Version: 2.5.3-dev
 Syntax
Syntaxpublic event EventHandler<WebViewNewWindowEventArgs> OpenNewWindow
Public Event OpenNewWindow As EventHandler(Of WebViewNewWindowEventArgs)
member OpenNewWindow : IEvent<EventHandler<WebViewNewWindowEventArgs>,
    WebViewNewWindowEventArgs>
Value
Type: 
SystemEventHandlerWebViewNewWindowEventArgs Remarks
Remarks
            This event will occur when a user or script opens a new link in a new window.
            
            This is usually when an anchor's target is set to _blank, or a specific window name.
            
            You must handle this event to perform an action, otherwise no action will occur.
            
 See Also
See Also