Version

AsynchronousCalculationDuration Property

The duration in milliseconds that the XamCalculationManager will use to perform calculations each time the AsynchronousCalculationInterval passes. Default value is 50.
Syntax
'Declaration
 
Public Property AsynchronousCalculationDuration As Integer
public int AsynchronousCalculationDuration {get; set;}
Remarks

This property only applies when CalculationFrequency is set to Asynchronous.

AsynchronousCalculationDuration determines how much time is used by the CalculationManager to perform pending calculations. Each time the interval specified by AsynchronousCalculationInterval passes, the CalculationManager will begin performing any neccessary calculations. If there are still calculations pending when the time expires, then some calculations will be left in a dirty state until the next time PerformCalculations is called or the Interval passes again.

To force all calculations to be completed each time the Interval passes, set this property to 0.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, 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