Version

Highlighting an Active Row with Background Color

Using the BackColor property of the ActiveRow’s Appearance object, you can choose to highlight the active row with a color.

In Visual Basic:

Private Sub Highlight_Active_Row_with_Background_Color_Load(ByVal sender As System.Object, _
  ByVal e As System.EventArgs) Handles MyBase.Load
        Me.UltraGrid1.DisplayLayout.Override.ActiveRowAppearance.BackColor = Color.Red
End Sub

In C#:

private void Highlight_Active_Row_with_Background_Color_Load(object sender, EventArgs e)
{
        this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance.BackColor = Color.Red;
}
highlight a selected row with background color in ultragrid