dagAddActionToObject
dagAddActionToObject(l_action w_object) =>t_actionName/nil
Description
Adds the action to the specified dag node or class. However, if the action is already in the list, it is not replaced. For an existing action, use dagDeleteActionFromObject to delete the action and then call dagAddActionToObject.
Nodes inherit the actions of their class.
Arguments
Value Returned
Examples
Adds an action to the myClass dagClass:
action = ’("Hello" "println" "\"hello\"")
dagAddActionToObject(action myClass)
Related Topics
Return to top