ClassCalculatedFieldCollection
Class
Represents a strongly-typed collection of CalculatedField objects for data source transformations.
Definition
Namespace:Telerik.Reporting
Assembly:Telerik.Reporting.dll
Syntax:
cs-api-definition
[TypeConverter("Telerik.Reporting.Design.CalculatedFieldCollectionConverter, Telerik.Reporting.Design, Version=20.0.26.211, Culture=neutral, PublicKeyToken=a9d7983dfcc261be")]
public class CalculatedFieldCollection : Collection<CalculatedField>
Inheritance: objectCollection<CalculatedField>CalculatedFieldCollection
Constructors
CalculatedFieldCollection()
Declaration
cs-api-definition
public CalculatedFieldCollection()
Methods
AddRange(IEnumerable<CalculatedField>)
Adds multiple calculated fields to the collection in a single operation.
Declaration
cs-api-definition
public void AddRange(IEnumerable<CalculatedField> fields)
Parameters
fields
IEnumerable<CalculatedField>
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.