Ext.Net.Resizable.ResizeTo C# (CSharp) Method

ResizeTo() public method

Perform a manual resize and fires the 'resize' event.
public ResizeTo ( int width, int height ) : void
width int
height int
return void
        public virtual void ResizeTo(int width, int height)
        {
            this.Call("resizeTo", width, height);
        }
    }