GridJ'ler için ayarlar

Contents
[ ]

set GridWorkbookSettings ile belirtebileceğimiz bazı ayarlar var:

Örneğin, aşağıdaki kod, dosyayı açarken caculate’i durdurmak için ReCalculateOnOpen’ı false olarak ayarlar:

   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");

aşağıdaki kod, dosyanın yazarını ayarlar:

   GridJsWorkbook gw = new GridJsWorkbook();
   GridWorkbookSettings gws = new GridWorkbookSettings();
   //set author.
    gws.Author = "peter";
    gw.Settings = gws;
    gw.ImportExcelFile(@"c:\test.xlsx");

Bu sınıfta daha fazla ayarı kontrol edebilirsiniz.