In datagridview, if I want to display column 5 in position 1 I would do the following:
Datagrid[4].DisplayIndex = 0;
How do i do this with ultragrid ?
Joe
Hi, assuming you're using a single band, you could do something like:
Me.UltraGrid.DisplayLayout.Bands(0).Columns("ColumnName").Header.VisiblePosition = 1
I'm not 100% sure of the top of my head whether VisiblePosition is a zero based index though.
Steve