Struct GroupGridSummaryValue
Describes a calculated summary value for a group grid column.
public readonly struct GroupGridSummaryValue
- Inherited Members
- Extension Methods
Constructors
GroupGridSummaryValue(GroupGridColumn, GroupGridAggregateKind, object)
Initializes a new instance of the GroupGridSummaryValue struct.
public GroupGridSummaryValue(GroupGridColumn Column, GroupGridAggregateKind AggregateKind, object Value)
Parameters
ColumnGroupGridColumnThe grid column.
AggregateKindGroupGridAggregateKindThe aggregate kind.
ValueobjectThe calculated value.
Properties
AggregateKind
Gets the aggregate kind.
public GroupGridAggregateKind AggregateKind { get; }
Property Value
Column
Gets the grid column.
public GroupGridColumn Column { get; }
Property Value
Empty
Gets an empty summary value.
public static GroupGridSummaryValue Empty { get; }
Property Value
Value
Gets the calculated value.
public object Value { get; }