Not.htm 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <html>
  2. <head>
  3. <title>Blitz3D Docs</title>
  4. <link rel=stylesheet href=../css/commands.css type=text/css>
  5. </head>
  6. <body>
  7. <h1>Not</h1>
  8. <h1>Parameters</h1>
  9. <table>
  10. <tr>
  11. <td>
  12. None.
  13. </td>
  14. </tr>
  15. </table>
  16. <h1>Description</h1>
  17. <table>
  18. <tr>
  19. <td>
  20. The NOT operator is used to determine if a condition is FALSE instead of TRUE. This is frequently used in WHILE loops and IF statements to check for the NON-EXISTANCE of an event or value. We use NOT frequently in our examples, inside WHILE loops to test if the ESC key has been pressed.
  21. <br>
  22. <br>
  23. See also: <a class=small href=And.htm>And</a>, <a class=small href=Or.htm>Or</a>, <a class=small href=Xor.htm>Xor</a>.
  24. </td>
  25. </tr>
  26. </table>
  27. <h1><a href=../2d_examples/Not.bb>Example</a></h1>
  28. <table>
  29. <tr>
  30. <td>
  31. ; NOT example <br />
  32. <br />
  33. ; Loop until they press ESC <br />
  34. While Not KeyHit(1) ; As long as ESC isn't pressed ... <br />
  35. Print "Press ESC to quit!" <br />
  36. Wend
  37. </td>
  38. </tr>
  39. </table>
  40. <br>
  41. <a target=_top href=../index.htm>Index</a><br>
  42. <br>
  43. Click <a href=http://www.blitzbasic.co.nz/b3ddocs/command.php?name=Not&ref=comments target=_blank>here</a> to view the latest version of this page online</body>
  44. </html>