isComputeOnClose() |
Top Previous Next |
isComputeOnClose()
New in EFS2. This function returns true if setComputeOnClose() is being used in the preMain() function or if the "Make all formulas compute on close" option is checked in the Formula Engine Settings dialog.
Parameters
Usage
function main() {
... ...
//there may be times where you want to handle certain logic //differently if setComputeOnClose() is being used if ( isComputeOnClose()==true ) { //do this } else { //do that }
}
|