Class RemoveListItemAt
Removes the item at the specified index of a list.
Implements
IDisposable
Inherited Members
Namespace: Unity.VisualScripting
Assembly: solution.dll
Syntax
[UnitCategory]
[UnitSurtitleAttribute]
[UnitShortTitleAttribute]
[UnitOrderAttribute]
public sealed class RemoveListItemAt : Unit, IUnit, IGraphElementWithDebugData, IGraphElement, IGraphItem, INotifiedCollectionItem, IDisposable, IPrewarmable, IAotStubbable, IIdentifiable, IAnalyticsIdentifiable
Properties
enter
The entry point for the node.
Declaration
[DoNotSerializeAttribute]
public ControlInput enter { get; }
Property Value
| Type | Description |
|---|---|
| ControlInput |
exit
The action to execute once the item has been removed.
Declaration
[DoNotSerializeAttribute]
public ControlOutput exit { get; }
Property Value
| Type | Description |
|---|---|
| ControlOutput |
index
The zero-based index.
Declaration
[DoNotSerializeAttribute]
public ValueInput index { get; }
Property Value
| Type | Description |
|---|---|
| ValueInput |
listInput
The list.
Declaration
[DoNotSerializeAttribute]
public ValueInput listInput { get; }
Property Value
| Type | Description |
|---|---|
| ValueInput |
listOutput
The list without the removed item. Note that the input list is modified directly and then returned, except if it is an array, in which case a new array without the item is returned instead.
Declaration
[DoNotSerializeAttribute]
public ValueOutput listOutput { get; }
Property Value
| Type | Description |
|---|---|
| ValueOutput |
Methods
Definition()
Declaration
protected override void Definition()
Overrides
RemoveAt(Flow)
Declaration
public ControlOutput RemoveAt(Flow flow)
Parameters
| Type | Name | Description |
|---|---|---|
| Flow | flow |
Returns
| Type | Description |
|---|---|
| ControlOutput |
Implements
IDisposable