Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ICustomCalculationService.OnEndCircularReferencesCalculation(IList<CellKey>) Method

This method is called after circular reference calculation.

Namespace: DevExpress.XtraSpreadsheet.Services

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

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

void OnEndCircularReferencesCalculation(
    IList<CellKey> cellKeys
)

#Parameters

Name Type Description
cellKeys IList<CellKey>

A list of objects that identify cells with circular references and cells whose formulas refer to cells with circular references (dependent cells).

#Remarks

The OnEndCircularReferencesCalculation method is called if the CalculationOptions.Iterative option is true and the circular reference calculation is not canceled (the ICustomCalculationService.OnBeginCircularReferencesCalculation method returns true).

See Also