SheetXL - v0.3.20
    Preparing search index...

    Variable StatusConst

    Status: {
        Error: "error";
        Off: "off";
        Ready: "ready";
        Starting: "starting";
        Stopping: "stopping";
    } = ...

    Represents the calculation engine's overall status.

    Type declaration

    • ReadonlyError: "error"

      The calculation engine has encountered an error and is unable to perform calculations. This status represents engine-level errors, separate from cell-level errors (which are represented as Scalar.Error values).

    • ReadonlyOff: "off"

      The calculation engine is disabled.

    • ReadonlyReady: "ready"

      The calculation engine is in manual mode and will only update cell values when a calculation is explicitly triggered.

    • ReadonlyStarting: "starting"

      The calculation engine is starting up and initializing its internal state.

    • ReadonlyStopping: "stopping"

      The calculation engine is stopping and cleaning up its internal state.