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

OnWindowSetBounds() protected method

Raises the WindowSetBounds event.
protected OnWindowSetBounds ( GeckoWindowSetBoundsEventArgs e ) : void
e GeckoWindowSetBoundsEventArgs The data for the event.
return void
        protected virtual void OnWindowSetBounds(GeckoWindowSetBoundsEventArgs e)
        {
            if (((GeckoWindowSetBoundsEventHandler)this.Events[WindowSetBoundsEvent]) != null)
                ((GeckoWindowSetBoundsEventHandler)this.Events[WindowSetBoundsEvent])(this, e);
        }