@mescius/spread-sheets 17.0.8 → 17.0.9
Sign up to get free protection for your applications and to get access to all the features.
@@ -13892,7 +13892,7 @@ declare module GC{
|
|
13892
13892
|
* @property {boolean} [rowHeadersAsFrozenColumns] - Whether to treat the row headers as frozen columns when do save, default false.
|
13893
13893
|
* @property {boolean} [columnHeadersAsFrozenRows] - Whether to treat the column headers as frozen rows when do save, default false.
|
13894
13894
|
* @property {boolean} [includeAutoMergedCells] - Whether to include the automatically merged cells when do save, default false.
|
13895
|
-
* @property {boolean} [includeCalcModelCache] - Whether to include the extra data of calculation. Can be faster when open the file with those data, default false.
|
13895
|
+
* @property {boolean} [includeCalcModelCache] - [deprecated] Whether to include the extra data of calculation. Can be faster when open the file with those data, default false.
|
13896
13896
|
* @property {boolean} [includeUnusedNames] - Whether to include the unused custom name when do save, default true.
|
13897
13897
|
* @property {boolean} [includeEmptyRegionCells] - Whether to include any empty cells(cells with no data or only style) outside the used data range, default true.
|
13898
13898
|
* @property {string} [password] - Set the password to open the workbook.
|
@@ -50685,11 +50685,11 @@ declare module GC{
|
|
50685
50685
|
* return item['cost'] + '$';
|
50686
50686
|
* }
|
50687
50687
|
* var table = sheet.tables.add('tableSales', 0, 0, 5, 5);
|
50688
|
-
* var tableColumn1 = new GC.Spread.Sheets.Tables.
|
50689
|
-
* var tableColumn2 = new GC.Spread.Sheets.Tables.
|
50690
|
-
* var tableColumn3 = new GC.Spread.Sheets.Tables.
|
50691
|
-
* var tableColumn4 = new GC.Spread.Sheets.Tables.
|
50692
|
-
* var tableColumn5 = new GC.Spread.Sheets.Tables.
|
50688
|
+
* var tableColumn1 = new GC.Spread.Sheets.Tables.TableColumn(1, "orderDate", "Order Date", "d/M/yy");
|
50689
|
+
* var tableColumn2 = new GC.Spread.Sheets.Tables.TableColumn(2, "item", "Item");
|
50690
|
+
* var tableColumn3 = new GC.Spread.Sheets.Tables.TableColumn(3, "units", "Units");
|
50691
|
+
* var tableColumn4 = new GC.Spread.Sheets.Tables.TableColumn(4, "cost", "Cost", null, null, convert);
|
50692
|
+
* var tableColumn5 = new GC.Spread.Sheets.Tables.TableColumn(5, "isMakeMoney", "IsMakeMoney", null, new GC.Spread.Sheets.CellTypes.CheckBox());
|
50693
50693
|
* table.autoGenerateColumns(false);
|
50694
50694
|
*
|
50695
50695
|
* table.bind([tableColumn1, tableColumn2, tableColumn3, tableColumn4, tableColumn5], 'sales', data);
|