Google Slides · Schema

TextElement

A TextElement describes the content of a range of indices in the text content of a Shape or TableCell.

CollaborationGoogle WorkspacePresentationsProductivitySlides

Properties

Name Type Description
startIndex integer The zero-based start index of this text element, in Unicode code units of the UTF-16 encoding.
endIndex integer The zero-based end index of this text element, exclusive, in Unicode code units of the UTF-16 encoding.
View JSON Schema on GitHub

JSON Schema

google-slides-text-element-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TextElement",
  "type": "object",
  "description": "A TextElement describes the content of a range of indices in the text content of a Shape or TableCell.\n",
  "properties": {
    "startIndex": {
      "type": "integer",
      "description": "The zero-based start index of this text element, in Unicode code units of the UTF-16 encoding.\n"
    },
    "endIndex": {
      "type": "integer",
      "description": "The zero-based end index of this text element, exclusive, in Unicode code units of the UTF-16 encoding.\n"
    }
  }
}