# Holograms\_InsertLine()

### Full Function

Holograms\_InsertLine(id: string, line\_after\_new: integer, new\_line: string)

### Parameters

<table><thead><tr><th width="150">Name</th><th>Type</th><th>Description</th></tr></thead><tbody><tr><td>id</td><td>text/string</td><td>ID of target hologram</td></tr><tr><td>line_after_new</td><td>integer/number</td><td>The line number of the new line</td></tr><tr><td>new_line</td><td>text/string</td><td>The text to be inserted</td></tr></tbody></table>

### Return Values & Meanings

{% tabs %}
{% tab title="0" %}
{% hint style="success" %}
Success
{% endhint %}
{% endtab %}

{% tab title="1" %}
{% hint style="danger" %}
Error - Hologram does not have that many lines
{% endhint %}
{% endtab %}

{% tab title="2" %}
{% hint style="danger" %}
Error - Hologram is not loaded
{% endhint %}
{% endtab %}

{% tab title="3" %}
{% hint style="danger" %}
Error - Hologram does not exist
{% endhint %}
{% endtab %}
{% endtabs %}

### Usage

```python
set {_insert} to Holograms_InsertLine("hologram_id", 2, "This will be the new SECOND line")
if {_insert} is 1:
    send "That hologram does not have that many lines!"
```
