CellAggregateValue
Class
Contains the value of an AggregateValue and the IAggregateDescription that produced it.
Definition
Namespace:Telerik.Pivot.Core
Assembly:Telerik.WinControls.PivotGrid.dll
Syntax:
C#
public sealed class CellAggregateValue : IEquatable<CellAggregateValue>
Inheritance: objectCellAggregateValue
Implements:
Properties
Gets the column IGroup for which this values is generated.
C#
public IGroup ColumnGroup { get; }
Gets the IAggregateDescription which produced the Value.
C#
public IAggregateDescription Description { get; }
Gets the string representation of the value with the IAggregateDescription's string formats applied.
C#
public string FormattedValue { get; }
Gets the row IGroup for which this values is generated.
C#
public IGroup RowGroup { get; }
Gets the value for the some IGroups produced by the Description.
C#
public object Value { get; }
Methods
C#
public bool Equals(CellAggregateValue other)
Implements: