Difference between revisions of "Activity:RemoveFromNamedRelation (Activity)"
Line 10: | Line 10: | ||
}} | }} | ||
The RemoveFromNamedRelation activity removes a child object via the name of an existing [[Relation|relation]] from a given parent object. | The RemoveFromNamedRelation activity removes a child object via the name of an existing [[Relation|relation]] from a given parent object. | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
==Arguments== | ==Arguments== | ||
− | |||
{| class="wikitable sortable" | width = "50%" | {| class="wikitable sortable" | width = "50%" | ||
|- | |- | ||
! Argument !! Type !! Direction !! Purpose | ! Argument !! Type !! Direction !! Purpose | ||
|- align="left" | |- align="left" | ||
− | | Parent || RelationalObject || In || The parent object | + | | Parent || [[RelationalObject]] || In || The parent object |
|- align="left" | |- align="left" | ||
− | | RelationName || | + | | RelationName || {{String_MSDN}}|| In || The name of the relation to be searched for at the parent object |
|- align="left" | |- align="left" | ||
− | | Child || RelationalObject || In || The child to remove | + | | Child || [[RelationalObject]] || In || The child to remove |
|- align="left" | |- align="left" | ||
− | | Result|| | + | | Result|| {{Boolean_MSDN}}|| Out || True if successful, false if failed |
|} | |} | ||
Revision as of 15:05, 8 January 2015
Remove From Named Relation | |
---|---|
Name | RemoveFromNamedRelation |
Purpose | Remove child object from parent object |
Category | Object Primitives |
Returns | True if successful |
Version | 2.1.15+ |
The RemoveFromNamedRelation activity removes a child object via the name of an existing Relation from a given parent object.
Contents
Arguments
Argument | Type | Direction | Purpose |
---|---|---|---|
Parent | RelationalObject | In | The parent object |
RelationName | String | In | The name of the relation to be searched for at the parent object |
Child | RelationalObject | In | The child to remove |
Result | Boolean | Out | True if successful, false if failed |
Usage
This activity is used to find a certain relation at the parent object via the name and then remove the child object from it.
Example
Remove the MetaProperty NOMINALPOWER from a given MetaClass' properties:
Argument | Value |
---|---|
Parent | Connect this argument with a variable |
RelationName | "SYSREL_METAPROPERTY" |
Child | UBIKObject.GetMetaProperty("NONIMALPOWER") |