Skip to main content
All docs
V25.1
  • Row

    IWorkbook.Calculate(CellRange) Method

    Forces recalculation of the specified cell range in a worksheet.

    Namespace: DevExpress.Spreadsheet

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

    NuGet Package: DevExpress.Spreadsheet.Core

    Declaration

    void Calculate(
        CellRange range
    )

    Parameters

    Name Type Description
    range CellRange

    A CellRange object containing formulas to be recalculated.

    Remarks

    The Calculate method calculates all cells contained in the specified range. If the CalculationOptions.Iterative option is enabled and the DocumentOptions.CalculationEngineType property is set to CalculationEngineType.ChainBased, the dependency tree is not constructed and the cells are calculated from left to right, top to bottom.

    See Also