FSO.IDE.FSOUIControl.OnResize C# (CSharp) Method

OnResize() protected method

protected OnResize ( EventArgs e ) : void
e System.EventArgs
return void
        protected override void OnResize(EventArgs e)
        {
            if (FSOUI != null)
            {
                lock (FSOUI)
                {
                    FSOUI.Width = Width;
                    FSOUI.Height = Height;
                }
            }
        }