'Declaration Public Delegate Sub RowEventHandler( _ ByVal sender As Object, _ ByVal e As RowEventArgs _ )
public delegate void RowEventHandler( object sender, RowEventArgs e )
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinGrid Imports System.Diagnostics Private Sub UltraGrid1_AfterRowUpdate(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinGrid.RowEventArgs) Handles ultraGrid1.AfterRowUpdate ' AfterRowUpdate gets called after a row has been updated by the UltraGrid. If TypeOf Me.ultraGrid1.DataSource Is DataSet Then If e.Row.Band Is Me.ultraGrid1.DisplayLayout.Bands(0) Then Dim drv As DataRowView = DirectCast(e.Row.ListObject, DataRowView) Dim dr As DataRow = drv.Row Debug.WriteLine("Row state of the data row sould be modified: " & dr.RowState.ToString()) End If End If End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinGrid; using System.Diagnostics; private void ultraGrid1_AfterRowUpdate(object sender, Infragistics.Win.UltraWinGrid.RowEventArgs e) { // AfterRowUpdate gets called after a row has been updated by the UltraGrid. if ( this.ultraGrid1.DataSource is DataSet ) { if ( e.Row.Band == this.ultraGrid1.DisplayLayout.Bands[0] ) { DataRowView drv = (DataRowView)e.Row.ListObject; DataRow dr = drv.Row; Debug.WriteLine( "Row state of the data row sould be modified: " + dr.RowState.ToString( ) ); } } }
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