JJ
Jisha Joy
Syncfusion Team
July 5, 2010 06:45 AM UTC
Hi Boopathiraja,
Thank you for using Syncfusion products.
You could prevent resizing of the particular column by handling the ResizingColumns event, See the code:
this.gridControl1.ResizingColumns += new GridResizingColumnsEventHandler(gridControl1_ResizingColumns);
void gridControl1_ResizingColumns(object sender, GridResizingColumnsEventArgs e)
{
if (e.Columns.Right == 5)
e.Cancel = true;
}
Regards,
Jisha