Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid
Private Sub UltraGrid1_InitializeLayout(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs) Handles UltraGrid1.InitializeLayout
' Set the following properties to control the order in which the fixed
' summary row, fixed filter row and fixed add-rows are displayed. The
' row with the smaller number is displayed before the row with the
' larger number.
e.Layout.Override.SequenceSummaryRow = 0
e.Layout.Override.SequenceFilterRow = 1
e.Layout.Override.SequenceFixedAddRow = 2
End Sub