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

lxGetPinNets

lxGetPinNets(
)
=> lt_netName / nil

Description

Lists the pin net names from the Generate Layout or Update Components and Nets form. This function must always be called between calls to lxGenerateStart and lxGenerateFinish or lxUpdateComponentsAndNetsStart and lxUpdateComponentsAndNetsFinish. It is typically used to find net names to pass to lxSetNetPinSpecs.

Arguments

None

Value Returned

lt_netName

List of net names.

nil

The function failed.

Examples

lxGenerateStart(schCv layCv (?extractSchematic t))
...
nets = lxGetPinNets()
...
lxGenerateFinish(schCv layCv (?extractSchematic t))

Gets the pin names from the Generate Layout form.

lxUpdateComponentsAndNetsStart(schCv layCv (?extractSchematic t))
...
nets = lxGetPinNets()
...
lxUpdateComponentsAndNetsFinish(schCv layCv (?extractSchematic t))

Gets the pin names from the Update Components and Nets form.


Return to top
 ⠀
X