Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

ICustomCalculationService.OnEndCircularReferencesCalculation(IList<CellKey>) Method

The method is called after calculating all circular references.

Namespace: DevExpress.XtraSpreadsheet.Services

Assembly: DevExpress.Spreadsheet.v19.1.Core.dll

Declaration

void OnEndCircularReferencesCalculation(
    IList<CellKey> cellKeys
)

Parameters

Name Type Description
cellKeys IList<CellKey>

A list of CellKey objects which identify cells with circular references.

Remarks

The OnEndCircularReferencesCalculation method is called only if the CalculationOptions.Iterative option is true and the calculation of circular references is not canceled by returning false in the ICustomCalculationService.OnBeginCircularReferencesCalculation method.

The OnEndCircularReferencesCalculation method allows you to determine cells with circular references.

See Also