OpenTkEngine.Core.Gui.ScrollPanel.Resize C# (CSharp) Method

Resize() public method

public Resize ( int width, int height ) : void
width int
height int
return void
        public override void Resize(int width, int height)
        {
            base.Resize(width, height);
            _horizontalScroll.Resize(width, _horizontalScroll.GetHeight());
            _verticalScroll.Resize(_verticalScroll.GetWidth(), height);
        }