> For the complete documentation index, see [llms.txt](https://docs.powerpointgeneratorapi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.powerpointgeneratorapi.com/examples/text-shape/set-font-type-and-size.md).

# Set font type and size

1. Select the shape by `name` you want to modify. See [here](/knowledge-base/finding-shape-names.md) to find shape names.
2. Specify the text need amending under `text_run`. Text within one textbox can be split into multiple chunks. &#x20;
3. Add font setting `font_type` or font size setting `font_size` for selected text under `text_properties`.
4. Insert `new_line` as boolean before another `text_run`.&#x20;

Before and after:

![](/files/1gyRYkmA3s5vL7rwjwdm)![](/files/FEoqdIQFsimZbxLwJDPU)

Template Presentation

{% file src="/files/yhJxMMOWNqbRfyLpZlDF" %}

JSON Payload

{% code lineNumbers="true" %}

```json
{
  "presentation": {
    "template": "slides_as_template_text_font_size.pptx",
    "slides": [
      {
        "slide_index": 0,
        "shapes": [
          {
            "name": "Title 1",
            "text": [
              {
                "text_run": "Text font\n",
                "text_properties": {
                  "font_type": "Arial",
                  "font_size": 32
                }
              },
              {
                "text_run": "Text font",
                "text_properties": {
                  "font_type": "Arial",
                  "font_size": 25
                }
              }
            ]
          }
        ]
      }
    ]
  }
}
```

{% endcode %}
