Product Documentation
Virtuoso Schematic Editor SKILL Functions Reference
Product Version IC23.1, November 2023

opcRemoveObjectFromSet

opcRemoveObjectFromSet( 
o_set
d_object
)
=> t / nil

Description

Removes an object from the specified set.

Arguments

o_set

The OPC set that is being updated by removing the object.

d_object

Object to be removed.

Value Returned

t

Object removed from the set successfully.

nil

Failed to remove the object.

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
 ⠀
X