DoubleAggregateValue
Represents AggregateValue with double value.
Definition
Namespace:Telerik.Pivot.Core.Aggregates
Assembly:Telerik.WinControls.PivotGrid.dll
Syntax:
public sealed class DoubleAggregateValue : AggregateValue, IConvertibleAggregateValue<double>
Inheritance: objectCloneableAggregateValueDoubleAggregateValue
Implements:
Inherited Members
Constructors
Initializes a new instance of the DoubleAggregateValue class.
Methods
Add the value to the results in the current AggregateValue instance.
protected override void AccumulateOverride(object value)
The value to accumulate.
Overrides:
When implemented in a derived class, creates a new instance of the Cloneable derived class.
protected override Cloneable CreateInstanceCore()
New instance for cloning.
Overrides:
Do not call this method directly (except when calling base in an implementation). This method is called internally by the Clone() method whenever a new instance of the Cloneable is created. Notes to Inheritors. Every Cloneable derived class must implement this method. A typical implementation is to simply call the default constructor and return the result.
Gets a presentation friendly value of the results in the current AggregateValue instance to be returned in GetValue(). If an error occurred during calculations the GetValue() will not call GetValueOverride() but return the error instead.
Merge the results of an AggregateValue with the results in the current AggregateValue instance.
protected override void MergeOverride(AggregateValue childAggregate)
The AggregateValue to merge.
Overrides: