Class RemoveListItemAt
Removes the item at the specified index of a list.
Inheritance
RemoveListItemAt
Syntax
[UnitCategory("Collections/Lists")]
[UnitSurtitle("List")]
[UnitShortTitle("Remove Item At Index")]
[UnitOrder(5)]
[TypeIcon(typeof(RemoveListItem))]
public sealed class RemoveListItemAt : Unit, IUnit, IGraphElementWithDebugData, IGraphElement, IGraphItem, INotifiedCollectionItem, IDisposable, IPrewarmable, IAotStubbable, IIdentifiable
Properties
enter
The entry point for the node.
Declaration
[DoNotSerialize]
public ControlInput enter { get; }
Property Value
exit
The action to execute once the item has been removed.
Declaration
[DoNotSerialize]
public ControlOutput exit { get; }
Property Value
index
Declaration
[DoNotSerialize]
public ValueInput index { get; }
Property Value
Declaration
[DoNotSerialize]
public ValueInput listInput { get; }
Property Value
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
[DoNotSerialize]
public ValueOutput listOutput { get; }
Property Value
Methods
Definition()
Declaration
protected override void Definition()
Overrides
RemoveAt(Flow)
Declaration
public ControlOutput RemoveAt(Flow flow)
Parameters
Type |
Name |
Description |
Flow |
flow |
|
Returns
Extension Methods