3.6

@@CheckBox

Use @@Checkbox when you want to insert a box that is checked or clear depending based on a test condition. The box is checked when the test condition is true, and is clear when the test condition is false.

Syntax:

@@CheckBox(<test>)

Parameters:

<test>

The token will take the defined value when this test condition is true. You can use any of the following test conditions. You can test against a token. 

When testing on a string (non-numeric value), enclose the data in single quotes. When testing on a number, do not use single quotes.

You can use Or and And for testing multiple conditions. Or evaluates to true when any of the conditions are true. And evaluates to true only when all of the conditions are true.

=

equals

<>

does not equal

<

less than (only allowed with numeric data)

>

greater than (only allowed with numeric data)

 

Example,

@@CheckBox(#MDSLPolicy.AccountType = ‘CORP’)

Places a checked box when account type is CORP and a clear box for any other account type.