Google Slides · Schema
Table
A PageElement kind representing a table.
CollaborationGoogle WorkspacePresentationsProductivitySlides
Properties
| Name | Type | Description |
|---|---|---|
| rows | integer | Number of rows in the table. |
| columns | integer | Number of columns in the table. |
| tableRows | array | Properties and contents of each row. Cells that span multiple rows are contained in only one of these rows and have a rowSpan greater than 1. |
| tableColumns | array | Properties of each column. |
| horizontalBorderRows | array | Properties of horizontal cell borders. |
| verticalBorderRows | array | Properties of vertical cell borders. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Table",
"type": "object",
"description": "A PageElement kind representing a table.\n",
"properties": {
"rows": {
"type": "integer",
"description": "Number of rows in the table."
},
"columns": {
"type": "integer",
"description": "Number of columns in the table."
},
"tableRows": {
"type": "array",
"description": "Properties and contents of each row. Cells that span multiple rows are contained in only one of these rows and have a rowSpan greater than 1.\n"
},
"tableColumns": {
"type": "array",
"description": "Properties of each column."
},
"horizontalBorderRows": {
"type": "array",
"description": "Properties of horizontal cell borders."
},
"verticalBorderRows": {
"type": "array",
"description": "Properties of vertical cell borders."
}
}
}