I would like to fix the first two columns in my grid. To do this:
e.Layout.UseFixedHeaders = True
e.Layout.Bands(0).Columns(0).Header.Fixed = True
e.Layout.Bands(0).Columns(1).Header.Fixed = True
This works, however, I do not want to see the pushpin icon in the header columns. I do not want to allow the user to be able to fix the columns by pressing or unpressing the push pins. I would like to fix the first two columns so they do not scroll and never be changed by the user.
Any help would be appreciated.
e.Layout.Override.FixedHeaderIndicator = FixedHeaderIndicator.None;
Perfect. Thanks!