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