lxSetAreaEstimationOptions
lxSetAreaEstimationOptions( [ ?source1t_source1] [ ?source1Valsource1Val] [ ?source2t_source2] [ ?source2Valsource2Val] [ ?calcMethodt_calcMethod] [ ?areaCalct_areaCalc] ) => t / nil
Description
Sets the area estimation options to be used in generating a rectangular boundary in either the Generate Layout or Update Components and Nets form. The function is valid only if you specify a rectangular boundary using the lxSetBoundaryOptions function. It must be called between calls to lxGenerateStart and lxGenerateFinish or lxUpdateComponentsAndNetsStart and lxUpdateComponentsAndNetsFinish.
Arguments
Value Returned
Examples
lxGenerateStart(schCv layCv (?extractSchematic t))
lxSetAreaEstimationOptions(
?source1 "Utilization"
?source1Val 20
?source2 "AspectRatio"
?source2Val 1
?calcMethod "Internal"
?areaCalc "PR Boundary")
lxGenerateFinish(schCv layCv (?extractSchematic t))
lxUpdateComponentsAndNets(schCv layCv (?extractSchematic t))
lxSetAreaEstimationOptions(
?source1 "Utilization"
?source1Val 20
?source2 "AspectRatio"
?source2Val 1
?calcMethod "Internal"
?areaCalc "PR Boundary")
lxUpdateComponentsAndNetsFinish(schCv layCv (?extractSchematic t))
Return to top