fiogf49gjkf0d I can't recall which version this came in, but I don't believe it is available in 6.2.0 (I think it may have been 6.2.3 or 6.2.4), but the grid's CustomDrawCell event allows you to change the color and font.
Sub DataGridCustomDrawCell(Sender, ByRef Node, ByRef Column, IsSelected, IsFocused, ByRef Text, ByRef Color, ByRef Alignment, ByRef Font, ByRef FontColor) Font.Bold = True Color = YourColor 'etc End Sub
But, if you don't see that on the events list in 6.2.0 (and I don't believe you will) then you'd be out of luck until you move to 6.2.4. |