New to Telerik ReportingStart a free 30-day trial

Represents a strongly-typed collection of CalculatedField objects for data source transformations.

Definition

Namespace:Telerik.Reporting

Assembly:Telerik.Reporting.dll

Syntax:

C#
[TypeConverter("Telerik.Reporting.Design.CalculatedFieldCollectionConverter, Telerik.Reporting.Design, Version=20.1.26.615, Culture=neutral, PublicKeyToken=a9d7983dfcc261be")]
public class CalculatedFieldCollection : Collection<CalculatedField>

Inheritance: objectCollection<CalculatedField>CalculatedFieldCollection

Constructors

C#
public CalculatedFieldCollection()

Methods

Adds multiple calculated fields to the collection in a single operation.

C#
public void AddRange(IEnumerable<CalculatedField> fields)
Parameters:fieldsIEnumerable<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.