Home › Forums › WinForms controls › Xceed Grid for WinForms › How to autosize the header column
I have always “…” in the header and the header text is truncated, how I can remove it.I want the header column with always fit with size of the text header.
Imported from legacy forums. Posted by rosario (had 1930 views)
You can use the GetFittedWidth method to have the column width adjusted to the text in the column.
e.g.:
column1.Width = column1.GetFittedWidth();
Imported from legacy forums. Posted by André (had 3028 views)