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

# Holograms\_Info()

Send a player information about the lines of a hologram

### Full Function

Holograms\_Info(p: player, id: text, colored: boolean = false)

### Parameters

<table><thead><tr><th width="150">Name</th><th>Type</th><th>Description</th></tr></thead><tbody><tr><td>p</td><td>player</td><td>Player to send the information to</td></tr><tr><td>id</td><td>text/string</td><td>ID of target hologram</td></tr><tr><td>colored</td><td>boolean</td><td>If you want to see the lines in color, set this to true. If you want to the the lines with the raw color codes, leave this blank or set it to false.<br><br>Default: false</td></tr></tbody></table>

### Return Values

This function sends information about the lines of the specified hologram to the specified player, but it does not return anything.

### Usage

```python
Holograms_Info(player, "hologram_id")

Holograms_Info(player, "hologram_id", true)
```
