How to remove the summary rows from the nested table in WinForms GridGroupngControl?
Summaries
To remove
the summary rows in the SummaryRows collection
from the nested table, you can get the TableDescriptor of
the nested table.
Refer to the following code example.
C#
GridTableDescriptor nestedTable = this.gridGroupingControl1.GetTableDescriptor(TableName);
//Removes the summary row from the nested table.
nestedTable.SummaryRows.Remove("Summary Name");VB
Dim nestedTable As GridTableDescriptor = Me.gridGroupingControl1.GetTableDescriptor(TableName)
'Removes the summary row from the nested table.
nestedTable.SummaryRows.Remove("Summary Name")Samples:
Reference Link: Getting Started