|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| -
| Header File
| winuser.h
| Unicode
| No
| Platform Notes
| None
|
|
|
WINDOWPOS
The WINDOWPOS structure contains information about the size and position of a window.
typedef struct _WINDOWPOS { // wp
HWND hwnd;
HWND hwndInsertAfter;
int x;
int y;
int cx;
int cy;
UINT flags;
} WINDOWPOS;
Members
hwnd
Identifies the window.
hwndInsertAfter
Specifies the position of the window in Z order (front-to-back position). This
member can be the handle of the window behind which this window is placed, or
can be one of the special values listed with the SetWindowPos function.
x
Specifies the position of the left edge of the window.
y
Specifies the position of the top edge of the window.
cx
Specifies the window width, in pixels.
cy
Specifies the window height, in pixels.
flags
Specifies the window position. This member can be one of the following values:
Value
| Meaning
| SWP_DRAWFRAME
| Draws a frame (defined in the window's class description) around the window.
| SWP_FRAMECHANGED
| 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.
| SWP_HIDEWINDOW
| Hides the window.
| SWP_NOACTIVATE
| 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).
| SWP_NOCOPYBITS
| 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.
| SWP_NOMOVE
| Retains the current position (ignores the X and Y parameters).
| SWP_NOOWNERZORDER
| Does not change the owner window's position in the Z order.
| SWP_NOREDRAW
| 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.
| SWP_NOREPOSITION
| Same as the SWP_NOOWNERZORDER flag.
| SWP_NOSENDCHANGING
| Prevents the window from receiving the WM_WINDOWPOSCHANGING message.
| SWP_NOSIZE
| Retains the current size (ignores the cx and cy parameters).
| SWP_NOZORDER
| Retains the current Z order (ignores the hWndInsertAfter parameter).
| SWP_SHOWWINDOW
| Displays the window.
|
See Also
EndDeferWindowPos, SetWindowPos, WM_NCCALCSIZE
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|