Hello.
I want to fix some columns of my grid. I noticed that if UseFixedHeaders is set to false, the grid doesn't fix the columns (regardless if they have .Header.Fixed set to true).
How can I do to get some columns fixed but don't let the user change it? In this case I don't want the user to manage this.
Thanks,
Diego!
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { UltraGridLayout layout = e.Layout; UltraGridOverride ov = layout.Override; layout.UseFixedHeaders = true; ov.FixedHeaderIndicator = FixedHeaderIndicator.None; }