SET_WINDOW_POS_FLAGS Enumeration
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
| Name | Value | Description | |
|---|---|---|---|
| SWP_ASYNCHRONOUS_WINDOW_POS | 16384 | ||
| SWP_DEFER_ERASE | 8192 | ||
| SWP_DO_NOT_ACTIVATE | 16 | ||
| SWP_DO_NOT_CHANGE_OWNER_ZORDER | 512 | ||
| SWP_DO_NOT_COPY_BITS | 256 | ||
| SWP_DO_NOT_REDRAW | 8 | ||
| SWP_DO_NOT_REPOSITION | 512 | ||
| SWP_DO_NOT_SEND_CHANGING_EVENT | 1024 | ||
| SWP_DRAW_FRAME | 32 | ||
| SWP_FRAME_CHANGED | 32 | ||
| SWP_HIDE_WINDOW | 128 | ||
| SWP_IGNORE_MOVE | 2 | ||
| SWP_IGNORE_RESIZE | 1 | ||
| SWP_NO_ZORDER | 4 | ||
| SWP_SHOW_WINDOW | 64 |
[Flags]
public enum SET_WINDOW_POS_FLAGS : uint
{
SWP_ASYNCHRONOUS_WINDOW_POS = 0x4000,
SWP_DEFER_ERASE = 0x2000,
SWP_DRAW_FRAME = 0x0020,
SWP_FRAME_CHANGED = 0x0020,
SWP_HIDE_WINDOW = 0x0080,
SWP_DO_NOT_ACTIVATE = 0x0010,
SWP_DO_NOT_COPY_BITS = 0x0100,
SWP_IGNORE_MOVE = 0x0002,
SWP_DO_NOT_CHANGE_OWNER_ZORDER = 0x0200,
SWP_DO_NOT_REDRAW = 0x0008,
SWP_DO_NOT_REPOSITION = 0x0200,
SWP_DO_NOT_SEND_CHANGING_EVENT = 0x0400,
SWP_IGNORE_RESIZE = 0x0001,
SWP_NO_ZORDER = 0x0004,
SWP_SHOW_WINDOW = 0x0040
}
This language is not supported or no code example is available.