ST
stanleyj
Syncfusion Team
September 27, 2005 09:10 AM UTC
Hi Krijn,
Try
this.gridControl1.Model.Cols.FrozenCount = 2;
This will freeze the first 2 columns (A and B). you can also selectively freeze the columns using FreezeRange function. The code below will freeze columns B and C.
this.gridControl1.Model.Cols.FreezeRange(2,3);
Best regards,
Stanley