Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid
Imports System.Diagnostics
Private Sub Button37_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button37.Click
If Me.ultraGrid1.ActiveRow Is Me.ultraGrid1.DisplayLayout.ActiveRow Then
Debug.WriteLine("UltraGrid.ActiveRow and DisplayLayout.ActiveRow are the same.")
Else
Debug.Assert(False, "UltraGrid.ActiveRow can not be different.")
End If
End Sub