Skybound.Gecko.GeckoWebBrowser.OnWindowSetBounds C# (CSharp) Méthode

OnWindowSetBounds() protected méthode

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