lePlot
lePlot(
[ t_fileName ]
)
=> t / nil
Description
Generates the plot defined in the t_fileName plot template file. Plot options are stored in a disembodied property list called lePlotOptions. When lePlot() loads the plot template file, it reads the plot options from the lePlotOptions property list. There are two ways to create the plot template file: use vi, or save the options in the Submit Plot form to a file. The plot template file is used by lePlot() and by the Load command in the Submit Plot form. However, the following options are ignored by the Load command: library, cell, view, and plotSize.
Arguments
|
A plot template file that stores plot options in a disembodied property list named |
Value Returned
Examples
Plots a cellview as specified in myPlotTemplateFile.
lePlot("myPlotTemplateFile")
Sample lePlotOptions template file
lePlotOptions = '(nil
area "whole"
view "layout"
cell "Inv"
library "master"
plot "cellview"
bBox ((0.0 0.0) (10.0 36.0))
noteText "For Your Review"
notes t
header t
plotterType "postscript1"
papersize "A"
plotter "HP"
plotToFile nil
display "display"
outputfile ""
time "now"
tmpdir "/usr/tmp"
copy 1
scale 7408.333333
center nil
mailto "user_name"
mail t
orientation "automatic"
plotsize (2.916667 10.5)
offset (0.0 0.0)
unit "inches"
gridMultiple 5
gridSpacing 1.000000
gridType "Dots"
stopLevel 32
startLevel 0
arrayDisplay "Full"
instName "instance"
pathCL "yes"
drawAxesOn t
iconsOn nil
)
You can also insert the lePlotOptions into the .cdsinit file. Each time you print, the options from that template file are used. However, the library name, cell name, and the view name in the lePlotOptions template file are not used, they are generated by the cellview window from which you are printing.
Additional Information
The following table describes the various plot options.
Return to top