Hello, I'm trying to set the height of the column headers through code, however, it appears that Me.myUltraGrid.DisplayLayout.Bands(0).Header.Height is a read only property at runtime. I've looked through the UG designer for the property but it appears that band and column settings aren't available until a datascheme has been specified (which isn't set until runtime). So, after binding to a dataset the column header text appears on 3 lines and is partially cut off on the 1st and 3rd lines of text, all I need to do is add a few more pixels to the column header height but am unable to do so ( due to the ReadOnly Me.myUltraGrid.DisplayLayout.Bands(0).Header.Height). Anyone have any ideas?Thank you,-Derek
Hi Derek,
If you are not using RowLayouts, then the header height can only be set by using ColHeaderLines.
Darn it, I had set that property yesterday and it never fixed my issue. After taking a look at it today I realized that I was initializing the ColHeaderLines property before binding the data. Problem solved! ColHeaderLines = 3Thank you for your quick response,-Derek