Excel.Interfaces.ApplicationData interface
An interface describing the data returned by calling application.toJSON()
.
Properties
calculation |
Returns the Excel calculation engine version used for the last full recalculation. |
calculation |
Returns the calculation mode used in the workbook, as defined by the constants in |
calculation |
Returns the calculation state of the application. See |
iterative |
Returns the iterative calculation settings. In Excel on Windows and Mac, the settings will apply to the Excel Application. In Excel on the web and other platforms, the settings will apply to the active workbook. |
Property Details
calculationEngineVersion
Returns the Excel calculation engine version used for the last full recalculation.
calculationEngineVersion?: number;
Property Value
number
Remarks
calculationMode
Returns the calculation mode used in the workbook, as defined by the constants in Excel.CalculationMode
. Possible values are: Automatic
, where Excel controls recalculation; AutomaticExceptTables
, where Excel controls recalculation but ignores changes in tables; Manual
, where calculation is done when the user requests it.
calculationMode?: Excel.CalculationMode | "Automatic" | "AutomaticExceptTables" | "Manual";
Property Value
Excel.CalculationMode | "Automatic" | "AutomaticExceptTables" | "Manual"
Remarks
calculationState
Returns the calculation state of the application. See Excel.CalculationState
for details.
calculationState?: Excel.CalculationState | "Done" | "Calculating" | "Pending";
Property Value
Excel.CalculationState | "Done" | "Calculating" | "Pending"
Remarks
iterativeCalculation
Returns the iterative calculation settings. In Excel on Windows and Mac, the settings will apply to the Excel Application. In Excel on the web and other platforms, the settings will apply to the active workbook.
iterativeCalculation?: Excel.Interfaces.IterativeCalculationData;
Property Value
Remarks
Office Add-ins