-
-
Notifications
You must be signed in to change notification settings - Fork 395
Open
Description
I'm stucked with a gsheets i want to update because there are some rows and columns frozen.
I found this:
await worksheet.updateProperties({
gridProperties: {
frozenColumnCount: 0,
frozenRowCount: 0,
}
});
and it's "shorthand"
await worksheet.updateGridProperties({
frozenColumnCount: 0,
frozenRowCount: 0,
});
But in the two cases, it still say that i can't delete row frozen.
Metadata
Metadata
Assignees
Labels
No labels