Indicates whether this row is an add-row.
Following code programmatically adds a new row for Customers band in the UltraGrid. When you call AddNew off the band, it adds the row under the parent row that's the active row if the band is a child band.
Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid
Imports System.Diagnostics
Private Sub Button24_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button24.Click
' AddNew method throws an exception if adding is not allowed or conditions
' don't exist for such an operation to succeed.
Try
Dim addedRow As UltraGridRow = Me.ultraGrid1.DisplayLayout.Bands("Customers").AddNew()
' IsAddRow should be true since the row is an add row (until it's updated).
Debug.WriteLine("Row.IsAddRow = " & addedRow.IsAddRow)
Catch exc As Exception
Debug.WriteLine("Exception thrown by AddNew: " & exc.Message)
End Try
End Sub
'Declaration
Public ReadOnly Property IsAddRow As Boolean
using Infragistics.Shared;
using Infragistics.Win;
using Infragistics.Win.UltraWinGrid;
using System.Diagnostics;
private void button24_Click(object sender, System.EventArgs e)
{
// AddNew method throws an exception if adding is not allowed or conditions
// don't exist for such an operation to succeed.
try
{
UltraGridRow addedRow = this.ultraGrid1.DisplayLayout.Bands["Customers"].AddNew( );
// IsAddRow should be true since the row is an add row (until it's updated).
Debug.WriteLine( "Row.IsAddRow = " + addedRow.IsAddRow );
}
catch ( Exception exc )
{
Debug.WriteLine( "Exception thrown by AddNew: " + exc.Message );
}
}
'Declaration
Public ReadOnly Property IsAddRow As Boolean
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