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

opcAllSetsInCellView

opcAllSetsInCellView( 
d_cellview
)
=> l_sets

Description

Returns a list of all the sets present in the specified cellview.

Arguments

d_cellview

Name of the cellview.

Value Returned

l_sets

List of sets in the given cellview.

Examples

To list all the sets in cv, use the following commands:

cv = geGetEditCellView()
sets = opcAllSetsInCellView(cv)
when(length(sets) != 0
   info(“Cellview %s.%s.%s contains.\n” cv~>libName cv~>cellName cv~>viewName) 
   foreach(s sets
      info(“Set %s with %d objects.\n” s~>name length(s~>objects))
)
)

Return to top
 ⠀
X