Impostazioni per GridJs

Contents
[ ]

Ci sono alcune impostazioni che possiamo specificare impostando GridWorkbookSettings :

Ad esempio, il seguente codice imposta ReCalculateOnOpen su false per impedire il calcolo all’apertura del file:

	gw = GridJsWorkbook()
	gws = GridWorkbookSettings()
	# do not re-calculate all formulas on opening the file.
	gws.re_calculate_on_open = False
	gw.settings = gws
	gw.import_excel_file(r"c:\test.xlsx")

il seguente codice imposta l’autore per il file:

	gw = GridJsWorkbook()
	gws = GridWorkbookSettings()
	#  et author
	gws.author = "peter"
	gw.settings = gws
	gw.import_excel_file(r"c:\test.xlsx")

Puoi controllare più impostazioni in questa classe.