Google Slides · Schema

TableCellLocation

A location of a single table cell within a table.

CollaborationGoogle WorkspacePresentationsProductivitySlides

Properties

Name Type Description
rowIndex integer The 0-based row index.
columnIndex integer The 0-based column index.
View JSON Schema on GitHub

JSON Schema

google-slides-table-cell-location-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TableCellLocation",
  "type": "object",
  "description": "A location of a single table cell within a table.",
  "properties": {
    "rowIndex": {
      "type": "integer",
      "description": "The 0-based row index."
    },
    "columnIndex": {
      "type": "integer",
      "description": "The 0-based column index."
    }
  }
}