Difference between revisions of "Activity:RemoveFromNamedRelation (Activity)"
(→See also) |
|||
| Line 1: | Line 1: | ||
| − | |||
| − | |||
| − | |||
{{ActivityInfoBox | {{ActivityInfoBox | ||
| title = Remove From Named Relation | | title = Remove From Named Relation | ||
| Line 12: | Line 9: | ||
| version = 2.1.15+ | | version = 2.1.15+ | ||
}} | }} | ||
| + | The RemoveFromNamedRelation activity removes a child object via the name of an existing [[Relation|relation]] from a given parent object. | ||
| + | |||
| + | |||
Revision as of 14:31, 23 July 2013
| 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") |
