バージョン

SequenceFixedAddRow プロパティ

このプロパティは他のSequenceプロパティと共に、関連付けられた特殊行の表示順序を決定します。順序番号の小さい特殊行が、順序番号の大きい特殊行より前に表示されます。
シンタックス
'宣言
 
Public Property SequenceFixedAddRow As Integer
public int SequenceFixedAddRow {get; set;}
使用例
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;
		}
参照