func_maxgui_windows_windowmaximized.rst 564 B

123456789101112131415161718192021222324252627282930313233343536
  1. .. _func_maxgui_windows_windowmaximized:
  2. ===============
  3. WindowMaximized
  4. ===============
  5. WindowMaximized -
  6. Description
  7. ===========
  8. .. code-block:: blitzmax
  9. WindowMaximized( window:TGadget )
  10. Detect if a window is maximized.
  11. A maximized window fills the entire desktop. A window may
  12. be maximized with the #MaximizeWindow command or by the user if
  13. #CreateWindow was called with the WINDOW_RESIZABLE flag.
  14. Parameters
  15. ==========
  16. Return Values
  17. =============
  18. True if the window is currently maximized, False if not.
  19. Examples
  20. ========
  21. See Also
  22. ========