Version

AutoResumeCalculations Property

Returns or sets a boolean indicating whether the Workbook will automatically call its ResumeCalculations methods before the Load method returns.
Syntax
'Declaration
 
Public Property AutoResumeCalculations As Boolean
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: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also