fileRadio
cdsLibManager.defaults fileRadio toggle (Overwrite Merge values Retain values)
Description
Specifies the default file save action of Library Manager. The choices are:
-
Overwritesaves the values you type by overwriting your.cdsenvfile -
Merge valuessaves the values you modify into your.cdsenvfile (the default) -
Retain valuessaves the values you specify by creating another file
GUI Equivalent
Examples
The following example returns the current value for the environment variable. The return value of (nil t nil) indicates that the Merge values option is enabled and the other two options are disabled:
envGetVal("cdsLibManager.defaults" "fileRadio")
(nil t nil)
The example below enables Overwrite and Retain values, and disables the Merge values option:
envSetVal("cdsLibManager.defaults" "fileRadio" 'toggle '(t nil t))
Related Topics
Using UNIX to Add Settings to a .cdsenv File
Save Library Manager Defaults Form
Return to top