Category / Section
How to rotate a column heading in the WinForms GridControl?
1 min read
Orientation
In the WinForms GridControl, the header cell text can be rotated by using the Orientation property.
//Rotates the text of the Column header.
font.Orientation = 90;
style1.Text = "Angle 90";'Rotates the text of the Column header.
font.Orientation = 90
style1.Text = "Angle 90"