Skip to main content
All docs
V25.1
  • Row

    Workbook.Calculate(CellRange) Method

    Forces recalculation of the specified cell range in a worksheet.

    You need a license for the DevExpress Office File API Subscription or DevExpress Universal Subscription to use this method in production code.

    Namespace: DevExpress.Spreadsheet

    Assembly: DevExpress.Docs.v25.1.dll

    NuGet Package: DevExpress.Document.Processor

    Declaration

    public 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