p Parameter

The p parameter is the value of the passOrBlock value in a rule.

This will evaluate to either true or false depending on the setting selected in the UI for the rule.

Example

To access the p parameter in a script, use

if (p === true)
{
  // do something
}

Last updated