You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/HyperFormula.ts
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -887,6 +887,8 @@ export class HyperFormula implements TypedEmitter {
887
887
* Returns dimensions of a specified sheet.
888
888
* The sheet dimensions is represented with numbers: width and height.
889
889
*
890
+
* Note: Due to the memory optimizations, some of the empty bottom rows and rightmost columns are not counted to the dimensions.
891
+
*
890
892
* @param {number} sheetId - sheet ID number
891
893
*
892
894
* @throws [[ExpectedValueOfTypeError]] if any of its basic type argument is of wrong type
@@ -1341,7 +1343,7 @@ export class HyperFormula implements TypedEmitter {
1341
1343
* Note: This method may trigger dependency graph recalculation.
1342
1344
*
1343
1345
* @param {number} sheetId - ID of a sheet to operate on
1344
-
* @param {number[]} newRowOrder - permutation of rows
1346
+
* @param {number[]} newRowOrder - permutation of rows; array length must match the number of rows returned by [getSheetDimensions()](#getsheetdimensions)
1345
1347
*
1346
1348
* @fires [[valuesUpdated]] if recalculation was triggered by this change
1347
1349
*
@@ -1506,7 +1508,7 @@ export class HyperFormula implements TypedEmitter {
1506
1508
* Note: This method may trigger dependency graph recalculation.
1507
1509
*
1508
1510
* @param {number} sheetId - ID of a sheet to operate on
1509
-
* @param {number[]} newColumnOrder - permutation of columns
1511
+
* @param {number[]} newColumnOrder - permutation of columns; array length must match the number of columns returned by [getSheetDimensions()](#getsheetdimensions)
1510
1512
*
1511
1513
* @fires [[valuesUpdated]] if recalculation was triggered by this change
0 commit comments