dbMakeNet
dbMakeNet(d_cellViewt_name[d_parentNet] ) =>d_net/ nil
Description
Creates a new net in a cellview. If the net already exists, it returns the dbObject of the net.
To create a child net, this function works identically to dbCreateNet. t_name can be a unique name, such as "net1" or, a hierarchy name, such as "moduleA`moduleB`Net2" with at least one hierarchy delimiter (`). However, if you specify a hierarchy name, the d_parentNet object must be nil.
Arguments
Value Returned
Examples
parentNet = dbMakeNet(cellview "net1")
hierNet = dbMakeNet(cellview"moduleA`moduleB`hierNet")
childNet = dbMakeNet(cellview "childNet" parentNet)
Related Topics
Connectivity Creation and Modification Functions
Return to top