Interface ISummaryRow
Defines common functionality for a GridSummaryRow for displaying the summary value.
Namespace: Syncfusion.Data
Assembly: Syncfusion.Data.WinForms.dll
Syntax
public interface ISummaryRow
Properties
CalculationUnit
Gets or sets the value that specifies the mode for calculating summaries.
Declaration
SummaryCalculationUnit CalculationUnit { get; set; }
Property Value
Type | Description |
---|---|
SummaryCalculationUnit | The unit of the summary calculation default value is AllRows. |
Name
Gets or sets the name of the summary row.
Declaration
string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the summary row. |
ShowSummaryInRow
Gets or sets a boolean value indicating whether to show summary in row.
Declaration
bool ShowSummaryInRow { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | True if summary is shown in row, otherwise false. |
SummaryColumns
Gets the collection of summary columns in the summary row.
Declaration
ObservableCollection<ISummaryColumn> SummaryColumns { get; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.ObservableCollection<ISummaryColumn> | The collection of summary columns in the summary row. |
Title
Gets or sets the title of the summary row, which contains the summary to be displayed in the summary row, if the ShowSummaryInRow is true.
Declaration
string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String | The title of the summary row, which contains the summary to be displayed in the summary row, if the ShowSummaryInRow is true. |
TitleColumnCount
Gets or sets the value that maintains the column span of the summary title.
Declaration
int TitleColumnCount { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The value that specifies the column span of the summary title. The default value is 0. |