lxGenerateStart
lxGenerateStart(
d_schId
d_layId
[ ?extractSchematic { t | nil } ]
)
=> t / nil
Description
Starts the Generate All From Source command, building the Generate Layout form without displaying it to the screen.
When used with the other lxSet* functions, this provides an alternative interface to the Generate Layout form. If optional arguments are not supplied the normal default values for the form fields apply.
Arguments
Value Returned
|
The Generate Layout 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()
....
lxGenerateStart(schCv layCv (?extractSchematic t))
Opens the Generate Layout form for the current views in the schematic and layout windows and extracts the schematic if required.
Return to top