> 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/shape/hide-or-remove-shape.md).

# Hide or remove shape

1. Select the shape by `name` you want to modify. See [here](/knowledge-base/finding-shape-names.md) to find shape names.
2. Use `Remove` (boolean) to delete a shape from the slide
3. Use `is_hidden` (boolean) to hide the shape. Can be unhidden using PowerPoint GUI.

Reference: [shapes](/json-template-syntax/shapes.md)

Download: [input.zip](https://drive.google.com/uc?export=download\&id=1QNjFvemIWDe3LR0RzkS-4GwvGUhlMkXn) | [output.pptx](https://drive.google.com/uc?export=download\&id=1bUIaH65g-bdw_hpzVApAU8kJIG91n6fd)

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

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

***

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

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

```json
{
  "presentation": {
    "template": "template.pptx",
    "slides": [
      {
        "slide_index": 0,
        "shapes": [
          {
            "name": "Rectangle 1",
            "is_hidden": true
          },
          {
            "name": "Rectangle 5",
            "remove": true
          }
        ]
      }
    ]
  }
}

```

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