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

opcFindSet

opcFindSet( 
d_cellview
t_name
)
=> o_opcSet / nil

Description

Searches for the specified OPC set name in the given cellview.

Arguments

d_cellview

Name of the cellview to be searched.

t_name

Name of the OPC set to be searched for.

Value Returned

o_opcSet

The name of the OPC set.

nil

Failed to find the specified set.

Examples

To find mySet from the cellview currently selected, set the following commands:

cv = geGetEditCellView()    
name = “mySet”
set = opcFindSet(cv name)
when(set
    info(“Set %s contains %d objects\n.” set~>name length(set~>objects))

Return to top
 ⠀
X