Product Documentation
Virtuoso Layout Suite SKILL Reference
Product Version IC23.1, November 2023

cphGetWinConfig

cphGetWinConfig(
w_windowID
)
=> g_physConfigID / nil

Description

Returns the ID of the physical configuration view associated with a specified Configure Physical Hierarchy window.

Arguments

w_windowID

ID of a Configure Physical Hierarchy window containing a physical configuration view.

Value Returned

g_physConfigID

ID of the physical configuration cellview.

nil

The command was unsuccessful.

Example

This example retrieves the physical configuration ID for the current Configure Physical Hierarchy window and sets the physical stop view list for the physical configuration view associated with that ID.

let( (win cph)
win = hiGetCurrentWindow(); assuming CPH is the current window
if(win then
cph = cphGetWinConfig(win)
if(cph then
cphSetStopList(cph "abstract layout")
)
)
)

Return to top
 ⠀
X