Home - Forums-.NET - FlyGrid.Net (Windows Forms) - How to set height of Header Row

FlyGrid.Net (Windows Forms)

.NET Datagrid - Fast, highly customizable, industry standards .NET data grid control for WinForms

This forum related to following products: FlyGrid.Net

How to set height of Header Row
Link Posted: 13-Oct-2006 15:48
How do I change the height of the Header row?  And is it possible to wrap text in the header row?

Thanks,

-Shl
Link Posted: 16-Oct-2006 00:12
If you meant heigh of column headers:
1. To change height of column headers just change flyGrid.Columns.HeadersHeight
2. Column headers are automatically supports wordwrap, but if you want to disable wordwrap - exclude FormatFlags.NoWrap option from Column.FormatFlags property:
[c#]
column.FormatFlags &= ~FormatFlags.NoWrap;