AD
Administrator
Syncfusion Team
February 21, 2005 06:01 PM UTC
You can freeze columns on the left of a GridControl by setting
gridControl1.Cols.FrozenCount = 1; //1 extra frozen column
You can freeze rows at the top by setting
gridControl1.Rows.FrozenCount = 1; // 1 extra frozen row
>I''ve had a quick look through but can''t seem to see if the grid control has a method to freeze columns (The vertical scrollbar only effecting columns that havn''t been froozen).
>
>Is there such a method?