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
|
ID of a Configure Physical Hierarchy window containing a physical configuration view. |
Value Returned
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