TableSummaryRows Property (SfDataGrid)
Gets or sets the collection of GridSummaryRow that displays the summary information either at top or bottom of SFDataGrid.
Syntax
'Declaration <CategoryAttribute("Summary")> <CloneableAttribute(True)> <DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content)> Public Property TableSummaryRows As ObservableCollection(Of GridTableSummaryRow)
'Usage Dim instance As SfDataGrid Dim value As ObservableCollection(Of GridTableSummaryRow) instance.TableSummaryRows = value value = instance.TableSummaryRows
[Category("Summary")] [Cloneable(true)] [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] public ObservableCollection<GridTableSummaryRow> TableSummaryRows {get; set;}
Property Value
The collection of GridSummaryRow to display the summary information either at top or bottom of SFDataGrid. The default value is null.Remarks
The table summary can have more than one summary rows and the summary value calculated overall the records in
SFDataGrid.
AssemblyVersion
Syncfusion.SfDataGrid.WinForms: 17.3460.0.26
See Also