How can I change the format of the header text, e.g. to italics, depending on whether grouping is allowed? Is the header row processed by the CellFormatting event? From the examples I've seen, since the type of row is not checked, I assume only data rows go there. I tried the code below in the form load event, but Italic is a read-only property, so I can't change it. I'm also counting on the fact there that the columns and cells are in exactly the same order, which may not be the case.
Dim i As Integer
For i = 0 To Me.TblUsersRadGridView.ColumnCount - 1
If Me.TblUsersRadGridView.Columns(i).AllowGroup Then
Me.TblUsersRadGridView.MasterGridViewInfo.TableHeaderRow.Cells(i).CellElement.Font.Italic = True
End If
Next