Skip to main content

ICustomCalculationService.OnEndCircularReferencesCalculation(IList<CellKey>) Method

This method is called after circular reference calculation.

Namespace: DevExpress.XtraSpreadsheet.Services

Assembly: DevExpress.Spreadsheet.v23.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