lxUpdateComponentsAndNetsStart
lxUpdateComponentsAndNetsStart(
d_schId
d_layId
[ ?extractSchematic { t | nil } ]
)
=> t / nil
Description
Starts the Update Components And Nets command, building the Update Components and Nets form without displaying it to the screen.
When used with the lxGet* and lxSet* functions, this provides an alternative interface to the Update Components and Nets form. If optional arguments are not supplied the normal default values for the form fields apply.
Arguments
Value Returned
|
The Update Components and Nets form was not initialized. Check that you have a Layout XL license available, and then check the log file for details. |
Example
hiSetCurrentWindow(schWin)
schCv = geGetEditCellView()
hiSetCurrentWindow(layWin)
layCv = geGetEditCellView()
....
lxUpdateComponentsAndNetsStart(schCv layCv (?extractSchematic t))
Opens the Update Components and Nets form for the current views in the schematic and layout windows and extracts the schematic, if required.
Return to top