Difference between revisions of "Activity:RemoveFromNamedRelation (Activity)"
m (Text replacement - "Workflows" to "") |
|||
(3 intermediate revisions by the same user not shown) | |||
Line 47: | Line 47: | ||
==See also== | ==See also== | ||
* [[Workflow Designer]] | * [[Workflow Designer]] | ||
− | * [[AssignToNamedRelation (Activity)]] | + | * [[Activity:AssignToNamedRelation (Activity)]] |
− | + | [[Category:Activities|RemoveFromNamedRelation (Activity)]] |
Latest revision as of 10:05, 4 November 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") |