Home › Forums › WinForms controls › Xceed Grid for WinForms › changing row color › Reply To: changing row color
Pingo!! I managed to get the resust as follows:
Dim row As CellRow = grdMenus.CurrentRow
If row.ForeColor.Name = “Red” Then
row.ResetForeColor()
Else
row.ForeColor = Color.Red
End If
Please post your comments, if anyone finds better option than this.
Imported from legacy forums. Posted by PETE (had 336 views)