# List.RemoveElement

Removes the specified element from List.

![List.RemoveElement](./images/ListRemoveElement.png)

## Properties

<table border="1" class="docutils">
<thead>
<tr><th>Property Name</th><th>Description</th></tr>
</thead>
<tbody valign="top">
<tr>
<td>
Element Type
</td>
<td>
Element type
</td>
</tr>
<tr>
<td>
Output
</td>
<td>
Output slot of the list of changes
</td>
</tr>
<tr>
<td>
Output Type
</td>
<td>
The type that modifies the List instance<dl class="docutils">
<dt>Keep</dt><dd>
            Change the specified instance as it is.
            </dd>
<dt>New Array</dt><dd>
            Create a new array and change it.
            </dd>
<dt>New List</dt><dd>
            Create a new List and change it.
            </dd>
</dl>
</td>
</tr>
<tr>
<td>
Input
</td>
<td>
List input slot
</td>
</tr>
<tr>
<td>
Element
</td>
<td>
Element
</td>
</tr>
 </tbody>
</table>


## Remarks

In an AOT environment such as IL2CPP, List<specified type> may not work properly unless it is used in the code.<br />
            See <a href="https://caitsithware.com/assets/arbor/docs/en/manual/dataflow/list.html#AOTRestrictions">Ahead-of-Time (AOT) Restrictions</a> for more information.

