opcCreatePersistentSet
opcCreatePersistentSet(d_cellview t_name) =>o_set/ nil
Description
Creates an OPC set that has a persistent storage in the cellview.
Arguments
|
Name of the cellview that stores the selected members of the set as well as the sets. |
|
Value Returned
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