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
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinGrid; using System.Diagnostics; private void UltraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { // 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; }