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: worksheet/Worksheet.ts
+39-29Lines changed: 39 additions & 29 deletions
Original file line number
Diff line number
Diff line change
@@ -39,27 +39,9 @@ class Worksheet {
39
39
/** An array of attributes to apply to the 'pageSetup' element of the spreadsheet */
40
40
pageSetup: {[prop: string]: any}|null;
41
41
/** An array of attributes (only "ref" Ex: "A1:D1" for now) to apply to the autoFilter element of the spreadsheet. Only one autoFilter per Worksheet */
42
-
autoFilter: {
43
-
/** Letter portion of cell name that defines left to right where filter database starts at */
44
-
left: string;
45
-
/** Letter portion of cell name that defines left to right where filter database ends at */
46
-
right: string;
47
-
/** Row Number autFilter is applied to */
48
-
rowNum: number;
49
-
}|null;
42
+
autoFilter: Worksheet.AutoFilter|null;
50
43
/** An array of attributes to apply to the 'extLst' element of a worksheet. Used for creating "Data Validations" or drop downs with specific data sets. */
0 commit comments