opcAddListToSet
opcAddListToSet(
o_set
l_objects
)
=> t / nil
Description
Adds a list of objects to the specified set.
Arguments
|
Name of the operating collections (OPC) set that is updated by adding the objects. |
|
Value Returned
Examples
To add the instances to a set, use the following command:
cv = geGetEditCellView()
instances = cv~>instances
set = opcFindSet(cv “mySet”)
opcAddListToSet(set instances)
;; check how many objects in the set
length(set~>objects)
Return to top