We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

how to avoide resizing of rows and columns

hi,
i am using grid grouping control and i am dispaying rows ,and i want to avoiide resizing of grid columns and rows.

1 Reply

JS Jeba S Syncfusion Team May 25, 2007 11:55 AM UTC

Hi Swaminath,

You need to subscribe the ResizingColumns and ResizingRows event handlers and set e.Cancel = true to avoid resizing.


this.gridGroupingControl1.TableControl.ResizingColumns +=new GridResizingColumnsEventHandler(TableControl_ResizingColumns);

private void TableControl_ResizingColumns(object sender, GridResizingColumnsEventArgs e)
{
if( e.Columns.Right == 2) //Prevent resizing for a particular column
e.Cancel = true;
}

this.gridGroupingControl1.TableControl.ResizingRows+=new GridResizingRowsEventHandler(TableControl_ResizingRows);
private void TableControl_ResizingRows(object sender, GridResizingRowsEventArgs e)
{
if(e.Rows.Bottom==3) //Prevent resizing for a particular row
{
e.Cancel=true;
}
}


Kindly let us know if this helps.

Best Regards,
Jeba.

Loader.
Live Chat Icon For mobile
Up arrow icon