Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
MINIMIZEDMETRICS structure (winuser.h)
Contains the scalable metrics associated with minimized windows. This structure is used with the SystemParametersInfo function when the SPI_GETMINIMIZEDMETRICS or SPI_SETMINIMIZEDMETRICS action value is specified.
Syntax
typedef struct tagMINIMIZEDMETRICS {
UINT cbSize;
int iWidth;
int iHorzGap;
int iVertGap;
int iArrange;
} MINIMIZEDMETRICS, *PMINIMIZEDMETRICS, *LPMINIMIZEDMETRICS;
Members
cbSize
The size of the structure, in bytes. The caller must set this to sizeof(MINIMIZEDMETRICS).
iWidth
The width of minimized windows, in pixels.
iHorzGap
The horizontal space between arranged minimized windows, in pixels.
iVertGap
The vertical space between arranged minimized windows, in pixels.
iArrange
The starting position and direction used when arranging minimized windows. The starting position must be one of the following values.
| Value | Meaning |
|---|---|
|
Start at the lower-left corner of the work area. |
|
Start at the lower-right corner of the work area. |
|
Start at the upper-left corner of the work area. |
|
Start at the upper-right corner of the work area. |
The direction must be one of the following values.
| Value | Meaning |
|---|---|
|
Arrange left (valid with ARW_BOTTOMRIGHT and ARW_TOPRIGHT only). |
|
Arrange right (valid with ARW_BOTTOMLEFT and ARW_TOPLEFT only). |
|
Arrange up (valid with ARW_BOTTOMLEFT and ARW_BOTTOMRIGHT only). |
|
Arrange down (valid with ARW_TOPLEFT and ARW_TOPRIGHT only). |
|
Hide minimized windows by moving them off the visible area of the screen. |
Requirements
| Requirement | Value |
|---|---|
| Minimum supported client | Windows 2000 Professional [desktop apps only] |
| Minimum supported server | Windows 2000 Server [desktop apps only] |
| Header | winuser.h (include Windows.h) |
See also
Feedback
Was this page helpful?
