Google Sheets

gs_auto_resize

Auto-resize columns or rows to fit their content.

Remote node2flow/google-sheets

Other tools also called gs_auto_resize? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "sheet_id": {
      "type": "number",
      "description": "The numeric sheet ID"
    },
    "dimension": {
      "type": "string",
      "description": "Dimension to resize: \"COLUMNS\" or \"ROWS\""
    },
    "end_index": {
      "type": "number",
      "description": "End index (0-based exclusive)"
    },
    "start_index": {
      "type": "number",
      "description": "Start index (0-based inclusive, e.g. 0 = column A or row 1)"
    },
    "spreadsheet_id": {
      "type": "string",
      "description": "The spreadsheet ID"
    }
  }
}