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; }
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2