func_input_appterminate.rst 533 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .. _func_input_appterminate:
  2. ============
  3. AppTerminate
  4. ============
  5. AppTerminate -
  6. Description
  7. ===========
  8. .. code-block:: blitzmax
  9. AppTerminate()
  10. Return app terminate state
  11. Parameters
  12. ==========
  13. Return Values
  14. =============
  15. True if user has requested to terminate application
  16. Examples
  17. ========
  18. .. code-block:: blitzmax
  19. Graphics 640,480,0
  20. While Not AppTerminate() Or Not Confirm( "Terminate?" )
  21. Cls
  22. DrawText MouseX()+","+MouseY(),0,0
  23. Flip
  24. Wend
  25. See Also
  26. ========