Skip to main content
Version: 5.x

ACTIVE FORM operator

The ACTIVATE FORM operator creates an action that checks the activeness of a form.

Syntax​

ACTIVE FORM formName

Description​

The ACTIVE FORM operator creates an action that writes the activeness value of the specified form to the System.isActiveForm[] property. If the form is active, TRUE is written.

Parameters​

Examples​

FORM exampleForm;
testActive {
ACTIVE FORM exampleForm;
IF isActiveForm() THEN MESSAGE 'Example form is active';
}