Google Slides · Schema
CropProperties
The crop properties of an object enclosed in a container.
CollaborationGoogle WorkspacePresentationsProductivitySlides
Properties
| Name | Type | Description |
|---|---|---|
| leftOffset | number | The offset specifies the left edge of the crop rectangle that is located to the right of the original bounding rectangle left edge, relative to the object's original width. |
| rightOffset | number | The offset specifies how far inward the right edge of the crop rectangle is from the right edge of the original bounding rectangle. |
| topOffset | number | The offset specifies how far inward the top edge of the crop rectangle is from the top edge of the original bounding rectangle. |
| bottomOffset | number | The offset specifies how far inward the bottom edge of the crop rectangle is from the bottom edge of the original bounding rectangle. |
| angle | number | The rotation angle of the crop window around its center, in radians. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "CropProperties",
"type": "object",
"description": "The crop properties of an object enclosed in a container.\n",
"properties": {
"leftOffset": {
"type": "number",
"description": "The offset specifies the left edge of the crop rectangle that is located to the right of the original bounding rectangle left edge, relative to the object's original width.\n"
},
"rightOffset": {
"type": "number",
"description": "The offset specifies how far inward the right edge of the crop rectangle is from the right edge of the original bounding rectangle.\n"
},
"topOffset": {
"type": "number",
"description": "The offset specifies how far inward the top edge of the crop rectangle is from the top edge of the original bounding rectangle.\n"
},
"bottomOffset": {
"type": "number",
"description": "The offset specifies how far inward the bottom edge of the crop rectangle is from the bottom edge of the original bounding rectangle.\n"
},
"angle": {
"type": "number",
"description": "The rotation angle of the crop window around its center, in radians.\n"
}
}
}