Aspose.Cells.GridWeb.Examples.CSharp.GridWebBasics.ResizeGridWeb.btnResizeGridWeb_Click C# (CSharp) Метод

btnResizeGridWeb_Click() защищенный Метод

protected btnResizeGridWeb_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
Результат void
        protected void btnResizeGridWeb_Click(object sender, EventArgs e)
        {
            // ExStart:ResizeGridWeb
            // Setting the height of GridWeb control
            GridWeb1.Height = new Unit(200, UnitType.Point);

            // Setting the width of GridWeb control
            GridWeb1.Width = new Unit(520, UnitType.Point);
            // ExEnd:ResizeGridWeb
        }