GridWorkbookSettings class

GridWorkbookSettings class

Represents the settings of the workbook.

The GridWorkbookSettings type exposes the following members:

Constructors

ConstructorDescription
initConstructs a new instance of GridWorkbookSettings

Properties

PropertyDescription
max_iterationReturns or sets the maximum number of iterations to resolve a circular reference,the default value is 100.
iterationIndicates whether use iteration to resolve circular references.
force_full_calculateIndicates whether fully calculates every time when a calculation is triggered.
create_calc_chainIndicates whether create calculated formulas chain. Default is false.
re_calculate_on_openIndicates whether re-calculate all formulas on opening file.
precision_as_displayedTrue if calculations in this workbook will be done using only the precision of the numbers as they’re displayed
date1904Gets or sets a value which represents if the workbook uses the 1904 date system.
enable_macrosEnable macros; Now it only works when copying a worksheet to other worksheet in a workbook.
check_custom_number_formatIndicates whether checking custom number format when setting Style.Custom.
authorGets/sets the author of the file.

Example

from aspose.cellsgridjs import GridJsWorkbook, GridWorkbookSettings

g = GridJsWorkbook()
gsettings = GridWorkbookSettings()
g.settings = gsettings

See Also