Articles in this section

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:

C#: Remove_Summaryrow_C#

VB: Remove_Summaryrow_VB

 

Reference Link: Getting Started 

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