Rename/resize ONE sheet of a Rootr spreadsheet
rootr_update_sheetUpdate a sheet's name, dimensions, and row-column sizing by sheet ID without altering cell contents. Use with rootr_read_spreadsheet to obtain the exact sheet ID.
Instructions
Merge-patch a single sheet's name/dimensions/row-col sizing by sheetId, without touching its cells. Call rootr_read_spreadsheet first to get the exact sheetId.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | New sheet name | |
| merges | No | Merged-cell ranges (0-indexed, inclusive, anchor = top-left) | |
| sheetId | Yes | Sheet id to update | |
| colCount | No | ||
| colSizes | No | Per-column widths (px), keyed by 0-based col index string | |
| rowCount | No | ||
| rowSizes | No | Per-row heights (px), keyed by 0-based row index string | |
| spreadsheetId | Yes | SPREADSHEET node id |