LassoScript Utility
Basics Browse Detail

[False]

Tag Link [False] Category Constant
Type Substitution Source Available No
Support Preferred Version 5.0
Change Unchanged Data Source Any
Output Type Boolean Security Tag
Implementation Internal Sets Lasso 8.5, Lasso 8.0, Lasso 7.0, Lasso 6.0, Lasso 5.0

Description

Returns the boolean value False.

Syntax

[If: (Variable_Defined: 'MyVariable') == False]
...
[/If]

Parameters

No Parameters Required.

Examples

To check whether a value is False:

Use the [If] ... [/If] tag and compare the variable containing the value to [False]. The following example returns "The condition is true!" since the variable is not equal to False.

[Variable: 'myCondition' = True]
[If: $myCondition == False]
The condition is false!
[Else]
The condition is true!
[/If]

The condition is true!

Category Tags

Substitution
[True]