SMcGregor
2018-10-15T16:13:17Z
Hi,

Is it possible to turn the header text 90 degrees?

Thanks.

..Steve
Igor/10Tec
2018-10-15T18:02:19Z
Here is an example:

iGrid1.Header.Cells[0, 0].TextFormatFlags = TenTec.Windows.iGridLib.iGStringFormatFlags.DirectionVertical;

You may also want to use the iGStringFormatFlags.DirectionVertical flag together with iGStringFormatFlags.Rotate180 if you do not like the default orientation.

After setting these flags for the required column headers, call the iGrid1.Header.AutoHeight() method to automatically adjust the header height to display all column header texts without clipping.

SMcGregor
2018-10-16T11:32:38Z
Thanks Igor for the quick response, I will try that.

..Steve