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.
The direction must be one of the following values.
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) |