ddAutoCtlSetVars
ddAutoCtlSetVars(
x_promptCkout
x_promptCkin
x_AutoCkout
x_AutoCkin
)
=> t
Description
Sets prompting and automatic check-in and check-out controls for files and views. Takes a list of four integers, each of which can be one of four values: 0 - none, 1 - views, 2 - files, 3 - both views and files. The integers are applied to indicate to the system to prompt for check out, prompt for check in, automatically check out, and automatically check in respectively.
Arguments
Value Returned
Examples
Turns on prompt check out, prompt check in, automatic check out, and automatic check in for views and files
ddAutoCtlSetVars (3 3 3 3)
Alternatively, you can also turn off prompt check out or prompt check in for files and views, but turn on automatic check out and automatic check in for files and views as shown in this example.
ddAutoCtlSetVars (0 0 3 3)
You can turn off prompt check out and prompt check in for files and views, turn on automatic check out of files and views, but, turn off automatic check in of files and views as shown in this example. The 4.3.4 version of Design Framework II defaults to this setting.
ddAutoCtlSetVars (0 0 3 0)
Return to top