opcAddObjectToSet
opcAddObjectToSet(
o_set
d_object
)
=> t / nil
Description
Adds an object to the specified set.
Arguments
Value Returned
Examples
To add an instance to a set, use the following command:
cv = geGetEditCellView()
inst = car(cv~>instances)
set = opcFindSet(cv “mySet”)
opcAddObjectToSet(set inst)
;; check for the object in the set
set~>objects
Return to top