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

opcCreatePersistentSet

opcCreatePersistentSet( 
d_cellview
t_name
)
=> o_set / nil

Description

Creates an OPC set that has a persistent storage in the cellview.

Arguments

d_cellview

Name of the cellview that stores the selected members of the set as well as the sets.

t_name

Name of the OPC set.

Value Returned

o_set

The newly created OPC set.

nil

Failed to create the set.

Examples

Suppose mySet is required even after the cellview has been closed. Use the following commands assuming that the cellview is opened for edits.

cv = geGetEditCellView()
set = opcCreatePersistentSet(cv “mySet”)
if(set then
   info(“Successfully created set %s.\n” set~>name)
else
   info(“Failed to create set.\n”)
)

Return to top
 ⠀
X