lxSetBoundaryOptions
lxSetBoundaryOptions( [ ?shapet_shape] [ ?origing_origin] [ ?pointslg_points] ) => t / nil
Description
Sets the boundary options in the Generate Layout and Update Components and Nets forms. It must be called between calls to lxGenerateStart and lxGenerateFinish or lxUpdateComponentsAndNetsStart and lxUpdateComponentsAndNetsFinish.
When used with the other lxSet* functions, this provides an alternative interface to the Generate Layout or Update Components and Nets forms. If optional arguments are not supplied the normal default values for the form fields apply.
Arguments
Value Returned
Examples
lxGenerateStart(schCv layCv (?extractSchematic t))
lxSetBoundaryOptions(
?shape "Rectangle"
?origin 0:0)
lxGenerateFinish(schCv layCv (?extractSchematic t))
Creates a rectangular boundary with its origin at (0, 0) during layout generation.
lxUpdateComponentsAndNetsStart(schCv layCv (?extractSchematic t))
lxSetBoundaryOptions(
?shape "Rectangle"
?origin 0:0)
lxUpdateComponentsAndNetsFinish(schCv layCv (?extractSchematic t))
Return to top