Settings for GridJs
Contents
[
Hide
]
There are some settings we can specified by set GridWorkbookSettings :
For example, the following code set the ReCalculateOnOpen to false to stop the caculate on opening the file :
GridJsWorkbook gw = new GridJsWorkbook();
GridWorkbookSettings gws = new GridWorkbookSettings();
//do not re-calculate all formulas on opening the file.
gws.ReCalculateOnOpen = false;
gw.Settings = gws;
gw.ImportExcelFile(@"c:\test.xlsx");
the following code set the author for the file :
GridJsWorkbook gw = new GridJsWorkbook();
GridWorkbookSettings gws = new GridWorkbookSettings();
//set author.
gws.Author = "peter";
gw.Settings = gws;
gw.ImportExcelFile(@"c:\test.xlsx");
You can check more settings in this class.