1)How I can set the outlook group by some column programmatically?
2) How I remove the option to change the group by column by user?
Thanks a lot!
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { e.Layout.ViewStyleBand = ViewStyleBand.OutlookGroupBy; e.Layout.Bands[0].SortedColumns.Add("Int32 1", false, true); e.Layout.GroupByBox.Hidden = true; }