123456789101112131415161718192021222324252627282930313233343536 |
- .. _func_maxgui_windows_windowmaximized:
- ===============
- WindowMaximized
- ===============
- WindowMaximized -
- Description
- ===========
- .. code-block:: blitzmax
- WindowMaximized( window:TGadget )
- Detect if a window is maximized.
- A maximized window fills the entire desktop. A window may
- be maximized with the #MaximizeWindow command or by the user if
- #CreateWindow was called with the WINDOW_RESIZABLE flag.
- Parameters
- ==========
- Return Values
- =============
- True if the window is currently maximized, False if not.
- Examples
- ========
- See Also
- ========
|