Articles in this section
Category / Section

How to remove the summary rows from the nested table in WinForms GridGroupngControl?

1 min read

Summaries

To remove the summary rows in the SummaryRows collection from the nested table, you can get the TableDescriptor of the nestedtable. 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:

C#: Remove_Summaryrow_C#

VB: Remove_Summaryrow_VB

Reference link: https://help.syncfusion.com/windowsforms/classic/gridgroupingcontrol/summaries

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied