CAPTURING

CAPTURING


CALL Index Level CAPTURING OFF
Syntax CAPTURING [OFF | ON | expression]
Category BASIC
Type Statement
Description resumes the capturing effect from the previous "execute . . . capturing" statements in a FlashBASIC program.

The "capturing off" statement turns off the capturing effect from the previous "execute . . . capturing" statements in a FlashBASIC program. "capturing on" resumes the capturing effect.

In the "expression" form, capturing is turned on if the expression evaluates to "true" (non-zero) and turned off if it evaluates to "false" (zero).
Options
See Also CAPTURING ON CAPTURING OFF statements & functions TCL EXECUTE
Example if system(26) then capturing off

"system(26)" checks to see if capturing is turned on.  If "on", this turns it off.

capturing s > 5

If "s" evaluates to a number greater than 5, capturing is turned on.
Warnings
Compatibility D3 7.0 AP
CALL Index Level CAPTURING OFF