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;