Table of Contents

Struct GroupGridSummaryValue

Namespace
Avalonia.Controls
Assembly
Tripous.Avalonia.Controls.dll

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

Column GroupGridColumn

The grid column.

AggregateKind GroupGridAggregateKind

The aggregate kind.

Value object

The calculated value.

Properties

AggregateKind

Gets the aggregate kind.

public GroupGridAggregateKind AggregateKind { get; }

Property Value

GroupGridAggregateKind

Column

Gets the grid column.

public GroupGridColumn Column { get; }

Property Value

GroupGridColumn

Empty

Gets an empty summary value.

public static GroupGridSummaryValue Empty { get; }

Property Value

GroupGridSummaryValue

Value

Gets the calculated value.

public object Value { get; }

Property Value

object