Set text line spacing
Find the shape
name
you want to update. See here to find shape names.Specify the text need amending under
text_run
. Text within one textbox can be split into multiple chunks.Add font settings for selected text under
text_properties
.Insert
new_line
as boolean before anothertext_run
.
Before and After
Template Presentation
JSON Payload
{
"presentation": {
"template": "slides_as_template_text_line_spacing.pptx",
"export_version": "Pptx2010",
"slides": [
{
"slide_index": 0,
"shapes": [
{
"name": "Title 2",
"content": "Text indent",
"settings": {
"text_line_spacing": 3
}
}
]
}
]
}
}
Last updated
Was this helpful?