opcRemoveObjectFromSet
opcRemoveObjectFromSet(o_set d_object) =>t/ nil
Description
Removes an object from the specified set.
Arguments
Value Returned
Examples
To remove an object from the given set, run the following commands:
cv = geGetEditCellView()
inst = car(cv~>instances)
set = opcFindSet(cv “mySet”)
opcAddObjectToSet(set inst)
;; confirm that object is in the set
set~>objects
opcRemoveObjectFromSet(set inst)
;; confirm that object has been removed from the set
set~>objects
Return to top