awvSaveWindow
awvSaveWindow(w_windowID t_fileName) =>t/nil
Description
Saves the state of the specified Waveform window to an XML file with the .grf extension.
Arguments
|
Path or name of the file in which the state of the specified Waveform window is to be saved. If you provide only a file name, the file is saved in the directory from which you started the software. |
Value Returned
|
State of the Waveform window cannot be saved because of an error. |
Examples
The following example saves the state of the Waveform window 7 to myFile in the /home/user directory.
awvSaveWindow(window(7) "/home/user/myFile")
=> t
The following example saves the state of the Waveform window 7 to myFile1 in the directory from which the software is started.
awvSaveWindow(window(7) "my_File1")
=> t
Return to top