apPDKSetupGetCdsEnvs
apPDKSetupGetCdsEnvs(t_pdkName) =>l_envarInfo/ nil
Description
(Virtuoso Layout Suite EXL) Retrieves a list of CDS environment variables with values that are registered to the specified PDK for the automated placement and routing flow.
Arguments
|
Name of the PDK for which environment variables with values must be retrieved. |
|
Value Returned
|
List of CDS environment variables with values registered for the specified PDK. |
|
|
There are no registered CDS environment variables for the specified PDK. |
Examples
Applies custom PDK settings and then retrieves a list of CDS environment variables with values for the specified PDK.
apCustomPDKSettings("CustomPDK" ?cdsEnvs list(list(list("tool1[.partition1]") list("varName1") list('type) list(value1))))
=> t
apPDKSetupGetCdsEnvs("CustomPDK")
=>((("tool1[.partition1]")
("varName1")
type()
(value1)
)
)
Return to top