EntityRemoveProperty
Alias:EntityRemoveProperty, Remove, RemoveProperty
Output:Entity
Returns a copy of the entity with the specified property removed
| Parameter | Type | Required | Position | Summary |
|---|---|---|---|---|
| Entity From | entity | ✔ | 1 | The entity to remove the property from |
| Property | string | ✔ | The name of the property to remove |
Examples​
Example 1​
SCL​
EntityRemoveProperty Entity: ('type': 'A', 'value': 1) Property: 'type'
Expected Output​
('value': 1)
Example 2​
SCL​
Remove From: ('type': 'A', 'value': 1) Property: 'value'
Expected Output​
('type': "A")