Name

beginRecord

Description Opens a new file and all subsequent drawing functions are echoed to this file as well as the display window. The beginRecord() function requires two parameters, the first is the renderer and the second is the file name. This function is always used with endRecord() to stop the recording process and close the file.

Note that beginRecord() will only pick up any settings that happen after it has been called. For instance, if you call textFont() before beginRecord(), then that font will not be set for the file that you're recording to.
Syntax
beginRecord(renderer, filename)
Parameters
rendererString: for example, PDF
filenameString: filename for output
Related endRecord
Creative Commons License