Version

InitializeTemplateAddRow Event

Occurs when a template add-row is initialized.
Syntax
'Declaration
 
Public Event InitializeTemplateAddRow As InitializeTemplateAddRowEventHandler
public event InitializeTemplateAddRowEventHandler InitializeTemplateAddRow
Event Data

The event handler receives an argument of type InitializeTemplateAddRowEventArgs containing data related to this event. The following InitializeTemplateAddRowEventArgs properties provide information specific to this event.

PropertyDescription
TemplateAddRow Associated template add-row.
Example
Following code shows an event handler for InitializeTemplateAddRow.

For an overview of how to handle events in Visual Basic or Visual C#, see Event Handlers in Visual Basic and Visual C#. For specific information and code examples illustrating how to consume events in your application, see Consuming Events in the .NET Framework Developer's Guide.

Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid


    Private Sub UltraGrid1_InitializeTemplateAddRow(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinGrid.InitializeTemplateAddRowEventArgs) Handles UltraGrid1.InitializeTemplateAddRow
        ' Initialize the template add-row. You can set the default values for the cells
        ' in the add-row. When the user adds a new row through the template add-row, the
        ' new row will be initialized with these default values.
        e.TemplateAddRow.Cells(0).Value = -1
    End Sub
using Infragistics.Shared;
using Infragistics.Win;
using Infragistics.Win.UltraWinGrid;
using System.Diagnostics;


		private void ultraGrid1_InitializeTemplateAddRow(object sender, Infragistics.Win.UltraWinGrid.InitializeTemplateAddRowEventArgs e)
		{
			// Initialize the template add-row. You can set the default values for the cells
			// in the add-row. When the user adds a new row through the template add-row, the
			// new row will be initialized with these default values.
			e.TemplateAddRow.Cells[0].Value = -1;
		}
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