cphReplaceCellName
cphReplaceCellName(t_oldName t_newName?cfgLibt_libName[ ?cfgCellt_cellName] [ ?cfgViewt_viewName] ) => t / nil
Description
Enables update or repair of physConfig views after performing linux copy to copy the library files instead of using the Library Manager Copy Library option.
Arguments
|
Name of the library that contains the physConfig views to be updated. |
|
|
Name of the cell that contains the physConfig views to be updated. |
|
Value Returned
Example
Copies a cell for one location to a new location.
cp –R cph/nand cphNew/nandNew
Finds all physConfigs in library "cphNew" and replaces any cell called "nand" with "nandNew" because only ?cfgLib is specified.
cphReplaceCellName("nand" "nandNew" ?cfgLib "cphNew")
Find all physConfigs in cell "cphNew/nandNew" and replaces any cell called "nand" with "nandNew" because both ?cfgLib and ?cfgCell are specified.
cphReplaceCellName("nand" "nandNew" ?cfgLib "cphNew" ?cfgCell "nandNew")
Finds the specified physConfig and replaces any cell called "nand" with "nandNew" because ?cfgLib, ?cfgCell, and ?cfgView are specified.
cphReplaceCellName("nand" "nandNew" ?cfgLib "cphNew" ?cfgCell "nandNew" ?cfgView "physConfig")
Return to top