fl (ULONG) - input

      Window-positioning options.

      One or more of these options can be specified:

      SWP_SIZE

        Change the window size.
      SWP_MOVE
        Change the window x,y position.
      SWP_ZORDER
        Change the relative window placement.
      SWP_SHOW
        Show the window.
      SWP_HIDE
        Hide the window.
      SWP_NOREDRAW
        Changes are not redrawn.
      SWP_NOADJUST
        Do not send a WM_ADJUSTWINDOWPOS message before moving or sizing.
      SWP_ACTIVATE
        Activate the hwnd window if it is a frame window. This indicator has no effect on other windows.

        The frame window is made the topmost window, unless SWP_ZORDER is specified also in which instance the hwndInsertBehind window is used.

      SWP_DEACTIVATE
        Deactivate the hwnd window if it is a frame window. This indicator has no effect on other windows.

        The frame window is made the bottommost window, unless SWP_ZORDER is specified, in which instance the hwndInsertBehind window is used.

      SWP_MINIMIZE
        Minimize the window. This indicator has no effect if the window is in a minimized state, and is also mutually exclusive with SWP_MAXIMIZE and SWP_RESTORE.
      SWP_MAXIMIZE
        Maximize the window. This indicator has no effect if the window is in a maximized state, and is also mutually exclusive with SWP_MINIMIZE and SWP_RESTORE.
      SWP_RESTORE
        Restore the window. This indicator has no effect if the window is in its normal state, and is also mutually exclusive with SWP_MINIMIZE and SWP_MAXIMIZE.

        The position and size of the window in its normal state is remembered in its window words when it is first maximized or minimized, although these values can be altered by use of the WinSetWindowUShort function.

        The window is restored to the position and size remembered in its window words, unless the SWP_MOVE or SWP_SIZE indicators are set. These indicators cause the position and size values specified in this function to be used.


      [Back] [Next]