cphOpenConfig
cphOpenConfig(
t_cfgLib
t_cfgCell
t_cfgView
[ t_mode { r | a } ]
)
=> g_physConfigID / nil
Description
Opens the specified physical configuration view by name in either read (the default) or append mode and returns its ID.
Arguments
|
t_cfgLib
|
Name of the library containing the physical configuration cellview.
|
|
t_cfgCell
|
Name of the cell containing the physical configuration cellview.
|
|
t_cfgView
|
Name of the physical configuration view to open.
|
|
t_mode
|
Mode in which the physical configuration view is opened: either read or append. The default is r.
Valid values: r, a
|
Value Returned
|
g_physConfigID
|
ID of the physical configuration cellview.
|
|
nil
|
The physical configuration view was not opened.
|
Example
physConfigID=cphOpenConfig("cph" "TopCell" "physConfig" "a")
Return to top