Version

Row Property

Grid row.
Syntax
'Declaration
 
Public ReadOnly Property Row As Infragistics.Win.UltraWinGrid.UltraGridRow
public Infragistics.Win.UltraWinGrid.UltraGridRow Row {get;}
Example
Following code shows how to use InitializeRow event to control the flow of exporting process of a grid with hierarchical data.

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.

Private Sub MyGridExporter_InitializeRow(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinGrid.ExcelExport.ExcelExportInitializeRowEventArgs) Handles MyGridExporter.InitializeRow
    If e.Row.Band.Index = 0 And e.Row.Index = 0 Then e.SkipRow = True
    If e.Row.Band.Index = 0 And e.Row.Index = 2 Then e.SkipDescendants = True
    If e.Row.Band.Index = 1 And e.Row.Index = 0 Then e.SkipSiblings = True
    If e.Row.Band.Index = 0 And e.Row.Index = 7 Then e.TerminateExport = True
End Sub
public void InitializeRowEH(object sender, ExcelExportInitializeRowEventArgs e)
{
	if(e.Row.Band.Index==0 && e.Row.Index==0)
		e.SkipRow = true;

	if(e.Row.Band.Index==0 && e.Row.Index==2)
		e.SkipDescendants = true;

	if(e.Row.Band.Index==1 && e.Row.Index==0)
		e.SkipSiblings = true;

	if(e.Row.Band.Index==0 && e.Row.Index==7)
		e.TerminateExport = true;
}
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