Product Documentation
Virtuoso Studio Design Environment SKILL Reference
Product Version IC23.1, November 2023

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

x_promptCkout

Prompts check out for views or files.

x_promptCkin

Prompts check in for views or files.

x_AutoCkout

Automatically checks out views or files.

x_AutoCkin

Automatically checks in views or files.

Each element is a value from 0 through 3 as mentioned above.

Value Returned

t

Sets the matching index to the values specified.

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
 ⠀
X