Skybound.Gecko.GeckoWebBrowser.OnCreateWindow C# (CSharp) Method

OnCreateWindow() protected method

Raises the CreateWindow event.
protected OnCreateWindow ( GeckoCreateWindowEventArgs e ) : void
e GeckoCreateWindowEventArgs The data for the event.
return void
        protected virtual void OnCreateWindow(GeckoCreateWindowEventArgs e)
        {
            if (((GeckoCreateWindowEventHandler)this.Events[CreateWindowEvent]) != null)
                ((GeckoCreateWindowEventHandler)this.Events[CreateWindowEvent])(this, e);
        }