Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid
Private Sub UltraGrid1_BeforeCellActivate(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinGrid.CancelableCellEventArgs) Handles ultraGrid1.BeforeCellActivate
' Set the appearance of the cell right before the cell is about to be activated.
' In the BeforeCellDeactivate, we will reset the BackColor.
e.Cell.Appearance.BackColor = Color.LightYellow
End Sub
Private Sub UltraGrid1_BeforeCellDeactivate(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles ultraGrid1.BeforeCellDeactivate
' Reset BackColor the appearance of the cell right before the cell is about
' to be deactivated.
Me.ultraGrid1.ActiveCell.Appearance.ResetBackColor()
End Sub