Google Slides · Schema

TableRange

A table range represents a reference to a subset of a table.

CollaborationGoogle WorkspacePresentationsProductivitySlides

Properties

Name Type Description
rowSpan integer The row span of the table range.
columnSpan integer The column span of the table range.
View JSON Schema on GitHub

JSON Schema

google-slides-table-range-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TableRange",
  "type": "object",
  "description": "A table range represents a reference to a subset of a table.",
  "properties": {
    "rowSpan": {
      "type": "integer",
      "description": "The row span of the table range."
    },
    "columnSpan": {
      "type": "integer",
      "description": "The column span of the table range."
    }
  }
}