Hi,
is there any way how to hide a column headers of a grid? I don't want a description of a all columns. Thanks a lot,
Jan
Inqb said: You could do this using RowLayouts, though. How? [/quote] By setting RowLayoutColumnInfo.LabelPosition = LabelPosition.None;
You could do this using RowLayouts, though.
How?
[/quote]
By setting RowLayoutColumnInfo.LabelPosition = LabelPosition.None;
Mike Saltzman said:You could do this using RowLayouts, though.
In the normal mode, you cannot hide a single header. You could do this using RowLayouts, though. Or if you just want to leave a gap where the header would have been, you could probably acheive what you want using a DrawFilter or CreationFilter.
what is the syntax for a column in a band to hide just that header?
Me.UltraGrid1.DisplayLayout.Bands(1).ColHeadersVisible = False - this is for all headers, so what if I want to hide column(2) in band 1.
Thanks
Thanks Rich,
that is what I was looking for!