schSaveCurrentPlotOptions
schSaveCurrentPlotOptions(
t_fileName
)
=> t / nil
Description
Writes the current plot settings to a file.
Arguments
Value Returned
|
Wrote the current plot settings to the file which you specified. |
|
Examples
Writes the current plot settings to myPlotSettingsFile. You can add this function to your .cdsinit file to ensure that every time you exit the software, the last plot settings are automatically saved in the specified file.
myPlotSettingsFile="userHomeDir/currentPlotSettings"
procedure( RememberPlotSettings()
schSaveCurrentPlotOptions(myPlotSettingsFile)
)
regExitBefore( 'RememberPlotSettings )
Return to top