Skybound.Gecko.GeckoWebBrowser.OnWindowSetBounds C# (CSharp) 메소드

OnWindowSetBounds() 보호된 메소드

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