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