Version

SequenceSummaryRow Property

This property in conjuction with other Sequence properties determines the order in which the associated special rows are displayed. The special row with a smaller sequence number is displayed before the ones with the larger sequence numbers.
Syntax
'Declaration
 
Public Property SequenceSummaryRow As Integer
public int SequenceSummaryRow {get; set;}
Example
The following code shows you how to control the order of fixed add-row, fixed filter row and the fixed summary row.

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;
		}
Requirements

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

See Also