Skip to main content
Version: v0.18.0

EntityRemoveProperty

Alias:EntityRemoveProperty, Remove, RemoveProperty

Output:Entity

Returns a copy of the entity with the specified property removed

ParameterTypeRequiredPositionSummary
Entity
From
entity✔1The entity to remove the property from
Propertystring✔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")