> 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/bullet-points-simple.md).

# Bullet-points simple

1. Select the shape by `name` you want to modify. See [here](/knowledge-base/finding-shape-names.md) to find shape names.
2. Use `text_run` to list your text into separate chunks.
3. Control bullet-point properties in `text_properties`.

Reference: [textbox](/json-template-syntax/shapes/textbox.md#text_properties-object)

Download: [input.zip](https://drive.google.com/uc?export=download\&id=1AEqYRS3HNDBHshZOK0KJddfVIvZzjMql) | [output.pptx](https://drive.google.com/uc?export=download\&id=1igIMGJFYTtL8iz5YkszuCrVaQilO0qSA)

{% columns %}
{% column width="41.66666666666667%" %}

<figure><img src="/files/bEiHwVC3PJdqzO0LQqLG" alt=""><figcaption></figcaption></figure>

***

<figure><img src="/files/ZWEXYLCaj3QXRdovSq0I" alt=""><figcaption></figcaption></figure>
{% endcolumn %}

{% column width="58.33333333333333%" %}
{% code lineNumbers="true" %}

```json
{
  "presentation": {
    "template": "template.pptx",
    "slides": [
      {
        "slide_index": 0,
        "shapes": [
          {
            "name": "TextBox 1",
            "text": [
              {
                "text_run": "Point 1 ",
                "text_properties": {
                  "bullet": true
                }
              },
              {
                "text_run": "Point 2",
                "text_properties": {
                  "bullet": true,
                  "font_bold": true,
                  "font_size": 20
                }
              },
              {
                "text_run": "Point 3",
                "text_properties": {
                  "bullet": true
                }
              },
              {
                "text_run": "Point 4",
                "text_properties": {
                  "bullet": true,
                  "font_bold": true,
                  "font_size": 20
                }
              }
            ]
          },
          {
            "name": "TextBox 2",
            "text": [
              {
                "text_run": "Point 1\nPoint 2\nPoint 3\nPoint 4",
                "text_properties": {
                  "bullet": true,
                  "font_bold": true
                }
              }
            ]
          }
        ]
      }
    ]
  }
}

```

{% endcode %}
{% endcolumn %}
{% endcolumns %}
