selectMatches
cdsLibManager.ckIn selectMatches toggle (all checkedOut unmanaged checkedIn)
Description
Specifies what items are selected when checking in an item. The choices are:
-
allmeans that all items are selected for check-in (the default) -
ckOutmeans that only checked out items are selected for check-in -
noDMmeans that only managed items are selected for check-in -
ckInmeans that only checked in and writable items are selected for check-in
GUI Equivalent
Examples
The following example returns the current value for the environment variable. The return value of (t nil nil nil) indicates that the all option is enabled and the other three options are disabled:
envGetVal("cdsLibManager.ckIn" "selectMatches")
(t nil nil nil)
The example below enables ckOut and noDM and disables all and ckInWritable:
envSetVal("cdsLibManager.ckIn" "selectMatches" 'toggle '(nil t t nil))
Related Topics
Return to top