Class RemoveListItem
Removes the specified item from a list.
Inheritance
RemoveListItem
Syntax
[UnitCategory("Collections/Lists")]
[UnitSurtitle("List")]
[UnitShortTitle("Remove Item")]
[UnitOrder(4)]
public sealed class RemoveListItem : 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
item
Declaration
[DoNotSerialize]
public ValueInput item { get; }
Property Value
Declaration
[DoNotSerialize]
[PortLabel("List")]
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]
[PortLabel("List")]
public ValueOutput listOutput { get; }
Property Value
Methods
Definition()
Declaration
protected override void Definition()
Overrides
Remove(Flow)
Declaration
public ControlOutput Remove(Flow flow)
Parameters
Type |
Name |
Description |
Flow |
flow |
|
Returns
Extension Methods