VariableLimit (Property)

Applies To:

Limit

Description:

Enables a limit to be considered a variable limit and prompts the user for a limit value when the query is processed.

Action:

Read-write, Boolean

Example:

This example checks to see if any query limits are set as variable limits and reverts them into normal limits.

for (j=1 ; j <= ActiveDocument.Sections["Query"].Limits.Count; j++)
     if (ActiveDocument.Sections["Query"].Limits[j].VariableLimit == true)
           ActiveDocument.Sections["Query"].Limits[j].VariableLimit = false