svgsave
| svgsave | 
  Purpose
 
  Synopsis
 
procedure svgsave(fname: string)
 
  Argument
 
| 
     fname 
     | 
     The (extended) filename to be used as output destination.
     | 
  Example
 
  This code saves a graph to the file 'mygraph.svg' in the model working directory.
 
svgaddgroup("a", "Group A")
svgaddrectangle(20, 120, 200, 250)
svgsave("mygraph.svg")
  Further information
 
  This procedure can be used independently of the graphical display in order to produce output in SVG format of the current graph definition.
 
 
