> For the complete documentation index, see [llms.txt](https://baezor.gitbook.io/sklib/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://baezor.gitbook.io/sklib/holograms/deleting-a-hologram.md).

# Deleting a Hologram

How to delete a hologram.

## Overview and Example

This is a tutorial on how to delete a hologram using SkLib's hologram api. Below is an example of how to delete a hologram.

```csharp
sklib_deleteHologram("test")
```

## How to Delete a Hologram

You can delete a hologram as long as you have a valid id. You must have a created hologram to delete!

```csharp
# All you need for deleting a hologram is an id.

# This is the order for the arguments.
# sklib_deleteHologram(id)

# Example
sklib_deleteHologram("test")
```
