Dev express Grid View column header size
Is there a property of a grid view control that can set the text size of a column h开发者_如何学编程eader?
For that controll you have a HeaderStyle
Porperty
For example:
<HeaderStyle ForeColor="White" Font-Bold="True"
BackColor="#A55129"></HeaderStyle>
Well explained at MSDN:
Formatting the GridView
Sorry, I forgot to mention that it needs to be server side. figured it out.
Me.Grid.Columns(columName).HeaderStyle.Font.Size = 50
精彩评论