ig.excel.WorkbookLoadOptions
Dependencies
-
ig.excel.WorkbookLoadOptions
Constructor- new $.ig.excel.WorkbookLoadOptions( );
Creates a new WorkbookLoadOptions instance.
-
autoResumeCalculations
- .autoResumeCalculations( );
Returns a boolean indicating whether the Workbook will automatically call its Workbook.resumeCalculations methods before the Load method returns.
Remarks
When the Load method starts the Workbook.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 Workbook.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. -
autoResumeCalculations
- .autoResumeCalculations( value:boolean );
Sets a boolean indicating whether the Workbook will automatically call its Workbook.resumeCalculations methods before the Load method returns.
- value
- Type:boolean
Remarks
When the Load method starts the Workbook.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 Workbook.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. -
isDuplicateFormulaParsingOptimized
- .isDuplicateFormulaParsingOptimized( );
Returns a boolean indicating whether duplicate formulas parsed during the load will be optimized for faster loading of the workbook.
Remarks
By default when an exact duplicate of a formula string is encountered during the load, the previously parsed formula will be cloned rather than reparsing the string to create an entirely new formula.
Note: This property does not apply to the loading of the xls formats.
-
isDuplicateFormulaParsingOptimized
- .isDuplicateFormulaParsingOptimized( value:boolean );
Sets a boolean indicating whether duplicate formulas parsed during the load will be optimized for faster loading of the workbook.
- value
- Type:boolean
Remarks
By default when an exact duplicate of a formula string is encountered during the load, the previously parsed formula will be cloned rather than reparsing the string to create an entirely new formula.
Note: This property does not apply to the loading of the xls formats.