opcAllSetsInCellView
opcAllSetsInCellView(d_cellview) =>l_sets
Description
Returns a list of all the sets present in the specified cellview.
Arguments
Value Returned
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