User32.SetWindowPosFlags Enumeration
A bit-field of flags for specifying set window position options.
Syntax
[Flags()] public enum User32.SetWindowPosFlags : System.Enum
[Flags()] public enum class User32.SetWindowPosFlags : public System.Enum
Members
Member | Description |
---|---|
AsynchronousWindowPosition | If the calling thread and the thread that owns the window are attached to different input queues, the system posts the request to the thread that owns the window. This prevents the calling thread from blocking its execution while other threads process the request. |
DeferErase | Prevents generation of the WM_SYNCPAINT message. |
DoNotActivate | Does not activate the window. If this flag is not set, the window is activated and moved to the top of either the topmost or non-topmost group (depending on the setting of the hWndInsertAfter parameter). |
DoNotChangeOwnerZOrder | Does not change the owner window's position in the Z order. |
DoNotCopyBits | Discards the entire contents of the client area. If this flag is not specified, the valid contents of the client area are saved and copied back into the client area after the window is sized or repositioned. |
DoNotRedraw | Does not redraw changes. If this flag is set, no repainting of any kind occurs. This applies to the client area, the nonclient area (including the title bar and scroll bars), and any part of the parent window uncovered as a result of the window being moved. When this flag is set, the application must explicitly invalidate or redraw any parts of the window and parent window that need redrawing. |
DoNotReposition | Same as the SWP_NOOWNERZORDER flag. |
DoNotSendChangingEvent | Prevents the window from receiving the WM_WINDOWPOSCHANGING message. |
DrawFrame | Draws a frame (defined in the window's class description) around the window. |
FrameChanged | Applies new frame styles set using the SetWindowLong function. Sends a WM_NCCALCSIZE message to the window, even if the window's size is not being changed. If this flag is not specified, WM_NCCALCSIZE is sent only when the window's size is being changed. |
HideWindow | Hides the window. |
IgnoreMove | Retains the current position (ignores X and Y parameters). |
IgnoreResize | Retains the current size (ignores the cx and cy parameters). |
IgnoreZOrder | Retains the current Z order (ignores the hWndInsertAfter parameter). |
ShowWindow | Displays the window. |
Inheritance Hierarchy
System.Object
System.ValueType
System.Enum
Aveva.ApplicationFramework.Presentation.User32.SetWindowPosFlags
Requirements
Target Platforms: Windows Server 2019 (64 bit), Windows Server 2016 R2 (64 bit), Windows 10 (64 bit)
See Also