Class CalculatedFieldCollection
Represents a strongly-typed collection of CalculatedField objects for data source transformations.
Inheritance
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public class CalculatedFieldCollection : Collection<CalculatedField>, IList<CalculatedField>, ICollection<CalculatedField>, IList, ICollection, IReadOnlyList<CalculatedField>, IReadOnlyCollection<CalculatedField>, IEnumerable<CalculatedField>, IEnumerable
Remarks
This collection manages calculated fields that define custom expressions and virtual columns for data sources. Provides specialized methods for bulk operations and equality comparisons optimized for calculated field scenarios.
Constructors
CalculatedFieldCollection()
Declaration
public CalculatedFieldCollection()
Methods
AddRange(IEnumerable<CalculatedField>)
Adds multiple calculated fields to the collection in a single operation.
Declaration
public void AddRange(IEnumerable<CalculatedField> fields)
Parameters
|
System.Collections.Generic.IEnumerable<CalculatedField>
fields
The enumerable collection of CalculatedField objects to add to this collection. |
Remarks
This method provides an efficient way to populate the collection with multiple calculated fields during initialization or bulk updates. Each field in the enumerable is added individually to maintain collection integrity and trigger appropriate notifications.