If.htm 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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>If</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. Use this to check the value of a variable or to see if a condition is true or false. The code between IF and END IF (or ENDIF) is executed if the condition is true. Using NOT, you can also act if the condition is NOT true - or use ELSE to perform a different set of commands than if the condition is met. Lastly, you can use 'nested' or multiple IFs through the use of ELSE IF (or ELSEIF) to do LOTS of condition checking. If you get too deep in condition checking, consider using SELECT structures instead.
  21. <br>
  22. <br>
  23. See also: <a class=small href=Then.htm>Then</a>, <a class=small href=Else.htm>Else</a>, <a class=small href=ElseIf.htm>ElseIf</a>, <a class=small href=EndIf.htm>EndIf</a>, <a class=small href=True.htm>True</a>, <a class=small href=False.htm>False</a>, <a class=small href=Select.htm>Select</a>.
  24. </td>
  25. </tr>
  26. </table>
  27. <h1><a href=../2d_examples/If.bb>Example</a></h1>
  28. <table>
  29. <tr>
  30. <td>
  31. ; IF THEN Example <br />
  32. <br />
  33. ; Input the user's name <br />
  34. name$=Input$("What is your name? ") <br />
  35. <br />
  36. ; Doesn't the person's name equal SHANE? <br />
  37. If name$ = "Shane" Then <br />
  38. <br />
  39. Print "You are recognized, Shane! Welcome!" <br />
  40. <br />
  41. Else <br />
  42. <br />
  43. Print "Sorry, you don't belong here!" <br />
  44. <br />
  45. ; End of the condition checking <br />
  46. End If
  47. </td>
  48. </tr>
  49. </table>
  50. <br>
  51. <a target=_top href=../index.htm>Index</a><br>
  52. <br>
  53. Click <a href=http://www.blitzbasic.co.nz/b3ddocs/command.php?name=If&ref=comments target=_blank>here</a> to view the latest version of this page online</body>
  54. </html>