Class LocalAggregateDescription
Base class that describes the aggregation of items using a property name as the criteria.
Inheritance
Inherited Members
Namespace: Telerik.Pivot.Core
Assembly: Telerik.Pivot.Core.dll
Syntax
public abstract class LocalAggregateDescription : AggregateDescriptionBase, INotifyPropertyChanged, ISupportInitialize, IObservableServiceProvider, IServiceProvider, IEditable, IAggregateDescription, IDescriptionBase, INamed, ITotalFormatHost, IDescriptionsReferencing, IStringFormattableAggregate
Properties
StringFormat
Declaration
public string StringFormat { get; set; }
Property Value
System.String
|
StringFormatSelector
Declaration
public StringFormatSelector StringFormatSelector { get; set; }
Property Value
StringFormatSelector
|
Methods
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).
GetValueForItem(Object)
Returns the value that will be passed in the aggregate for given item.
Declaration
protected abstract object GetValueForItem(object item)
Parameters
System.Object
item
The item which value will be extracted. |
Returns
System.Object
Returns the value for given item. |