Version

AutoResumeCalculations Property

Returns or sets a boolean indicating whether the Workbook will automatically call its ResumeCalculations methods before the Load method returns.
Syntax
public bool AutoResumeCalculations {get; set;}
Remarks
When the Load method starts the SuspendCalculations is invoked so that no calculations occurs as the load is in progress. When the Load operation is complete and the Workbook is about to be returned from the Load method, it will call the ResumeCalculations method to ensure that the loaded formulas have been added to the calculation network and the formulas can be calculated. However if one wanted to delay calling that method, perhaps to add additional formulas to the workbook being loaded, one can set this property to false and then the Workbook will not call ResumeCalculations. Instead it will be the responsibility of the caller to invoke this method.
Requirements

Target Platforms: Android 4.4+, iOS 8+

Development Environments: Visual Studio 2015+, Visual Studio for Mac Preview, Xamarin for Visual Studio 4.2+

See Also