calculateNow

The calculateNow method triggers the calculation in all fields in the current document.

 

Syntax

calculateNow();

 

Return Value

Returns None.

 

Remarks

The developer needs to turn off the automatic calculation changing the calculate property to false.

 

Member of doc.

 

Example

// Turning off the automatic calculation
this.calculate = false;
 
// Trigger the calculation
this.calculateNow();