You need to do this on the ColumnManagerRow or the ColumnManagerCell, not on the Column.
e.g.:
ColumnManagerRow1.Font =
New Font(“Tahoma”, 12, FontStyle.Bold)
‘or
For Each cell As ColumnManagerCell In ColumnManagerRow1.Cells
cell.Font =
New Font(“Tahoma”, 12, FontStyle.Bold)
Next
Imported from legacy forums. Posted by André (had 1220 views)