Google Slides · Schema

InsertTableColumnsRequest

Inserts columns into a table.

CollaborationGoogle WorkspacePresentationsProductivitySlides

Properties

Name Type Description
tableObjectId string The table to insert columns into.
insertRight boolean Whether to insert new columns to the right of the reference cell location.
number integer The number of columns to be inserted.
View JSON Schema on GitHub

JSON Schema

google-slides-insert-table-columns-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "InsertTableColumnsRequest",
  "type": "object",
  "description": "Inserts columns into a table.",
  "properties": {
    "tableObjectId": {
      "type": "string",
      "description": "The table to insert columns into."
    },
    "insertRight": {
      "type": "boolean",
      "description": "Whether to insert new columns to the right of the reference cell location."
    },
    "number": {
      "type": "integer",
      "description": "The number of columns to be inserted."
    }
  }
}