LassoScript Utility
Basics Browse Detail

[Operator_LogicalValue]

Tag Link [Operator_LogicalValue] Category Operator
Type Substitution Source Available No
Support Preferred Version 5.0
Change Unchanged Data Source Any
Output Type String Security None
Implementation LCAPI Sets Lasso 8.5, Lasso 8.0, Lasso 7.0, Lasso 6.0, Lasso 5.0
Lasso 3 Equivalent [LogicalOperator_Value]

Description

[Operator_LogicalValue] returns the value for the logical operator from the current action. The logical operator is always defined even for actions which do not reference a database. The default return value is AND.

If this tag is called within [Inline] ... [/Inline] tags it will return the value from the action specified in the opening [Inline] tag. If this tag is called on the response page to an HTML form or URL based action then it will return the value from the action defined there.

Syntax

[Operator_LogicalValue]

Parameters

No Parameters Required.

Examples

To display the logical operator:

Use the [Operator_LogicalValue] tag. The following example displays the logical operator from an inline.

[Inline: -Search,
    -Database='Contacts',
    -Table='People',
    -OperatorLogical='OR',
    'Last_Name'='Doe',
    'First_Name'='John']
  [Operator_LogicalValue]
[/Inline]

OR