Skip to main content
A newer version of this page is available. .
Row

PivotField.CalculatedItems Property

Provides access to the collection of calculated items added to the PivotTable field.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v17.2.Core.dll

Declaration

PivotCalculatedItemCollection CalculatedItems { get; }

Property Value

Type Description
PivotCalculatedItemCollection

A PivotCalculatedItemCollection object specifying the PivotField’s collection of calculated items.

Remarks

Use the CalculatedItems property to get access to the collection that stores all calculated items added to a PivotTable field. An individual calculated item can be accessed by its index in the collection.

To add a calculated item to a pivot field, use the PivotCalculatedItemCollection.Add method.

To remove a calculated item from the PivotTable field, use the PivotCalculatedItemCollection.Remove or PivotCalculatedItemCollection.RemoveAt method. You can also use the PivotCalculatedItemCollection.Clear method to remove all calculated items from the collection at once.

For more information on how to insert and modify calculated items, refer to the How to: Create a Calculated Item example.

The following code snippets (auto-collected from DevExpress Examples) contain references to the CalculatedItems property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also