Difference between revisions of "Activity:RemoveFromNamedRelation (Activity)"
m (Text replacement - "Workflows" to "") |
m (moved RemoveFromNamedRelation (Activity) to RemoveFromNamedRelation (Activity): Text replacement - "(.*)\(Activity\)" to "Activity:$1(Activity)") |
(No difference)
|
Revision as of 11:00, 23 February 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") |