menu_cmd_se.html 686 B

12345678910111213141516
  1. <div class="w3-item"><!-- img src="img/icn_?.png" title="icon if true then" class="w3-icon"/ -->
  2. <h3>Command If True Then</h3>
  3. <p>
  4. Using a <i>Logical Expression (LE) </i>, this command lets you select the execution of a set of commands (it can be just one)
  5. according to the logical result of the expression <tt>LE</tt>.
  6. Symbolically: <i>If</i> <tt>LE</tt> to be true, <i>then</i> execute commands.
  7. <br/>
  8. Optionally, a <i>else</i> can be used, that is, if the
  9. logical expression results false, a second set of commands will be executed.
  10. Symbolically:
  11. <i>IF</i> <tt>LE</tt> to be true, <i>then</i> execute true_commands, <i>else</i> execute false_commands.
  12. </p>
  13. </div>