Class AggregateValue
Holds a value presentation of an aggregate function accumulated during pivot grouping.
Namespace: Telerik.Pivot.Core.Aggregates
Assembly: Telerik.Pivot.Core.dll
Syntax
public abstract class AggregateValue : Cloneable
Constructors
AggregateValue()
Declaration
protected AggregateValue()
Fields
ErrorAggregateValue
Gets an Aggregate
Declaration
public static readonly AggregateValue ErrorAggregateValue
Field Value
Methods
AccumulateOverride(Object)
Add the value
to the results in the current Aggregate
Declaration
protected abstract void AccumulateOverride(object value)
Parameters
System. The value to accumulate. |
CloneCore(Cloneable)
Makes the instance a clone (deep copy) of the specified Cloneable.
Declaration
protected override void CloneCore(Cloneable source)
Parameters
Cloneable
source
The object to clone. |
Overrides
Remarks
Notes to Inheritors If you derive from Cloneable, you may need to override this method to copy all properties. It is essential that all implementations call the base implementation of this method (if you don't call base you should manually copy all needed properties including base properties).
GetValue()
Gets a presentation friendly value of the results in the current Aggregate
Declaration
public object GetValue()
Returns
System. Returns an object containing a formatted value or error object. |
GetValueOverride()
Gets a presentation friendly value of the results in the current Aggregate
Declaration
protected abstract object GetValueOverride()
Returns
System. A result object. |
MergeOverride(AggregateValue)
Merge the results of an Aggregate
Declaration
protected abstract void MergeOverride(AggregateValue childAggregate)
Parameters
Aggregate The Aggregate |
ToString()
Declaration
public override string ToString()
Returns
System.
|