Version

RowEventArgs Class

Event parameters used for events that take Row as its argument
Syntax
'Declaration
 
Public Class RowEventArgs 
   Inherits System.EventArgs
public class RowEventArgs : System.EventArgs 
Example
Following code shows some of the information available in AfterRowUpdate event. It gets the underlying DataRow associated with the row that was updated and prints out its RowState property. For this to work, the UltraGrid must be bound to a DataSet.

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
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( ) );
		}
	}

}
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