'Declaration Public ReadOnly Property Row As Infragistics.Win.UltraWinGrid.UltraGridRow
public Infragistics.Win.UltraWinGrid.UltraGridRow Row {get;}
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; }
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