Skip to content

MvELSE#


Used in an statement to provide an alternate execution branch when the condition return false.

Syntax
<MvELSE> 

In this example the code executed branches based on the system clock’s current hour of the day, where LT means Less Than. See Operators.

<MvIF EXPR="{ s.tm_hour LT 12 }">
    Good Morning.<br>
<MvELSE>
    Good Afternoon.<br>
</MvIF>