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