Version

SuspendCalc Method

Suspends calculations until ResumeCalc is called.
Syntax
'Declaration
 
Public Sub SuspendCalc() 
public void SuspendCalc()
Remarks

Calling SuspendCalc will temporarily suspend any automatic calculations performed by the _CALCMANAGER_ until a subsequent call to ResumeCalc is made. If this method has been called multiple times, then an equal number of calls to ResumeCalc are necessary to resume calculations.

Note that the suspension refers to automatic calculations only. This means that calculations that would normally be performed on a timer in Asynchronous mode or on a ValueDirtied notification in Synchronous mode (see CalcFrequency) will not be performed. Manually calling the ReCalc method will still force a calculation.

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