MINIMIZEDMETRICS (Structures)
Last changed: -213.174.247.62

.
Summary
The MinimizedMetrics structure is used with SystemParametersInfo to set the properties of minimized windows when opening or closing a shell application (e.g. Windows Explorer).

C# Definition:

[StructLayout(LayoutKind.Sequential)]
struct MinimizedMetrics
{
   uint cbSize;
   int iWidth;
   int iHorzGap;
   int iVertGap;
   MinimizedMetricsArrangement iArrange;
}
[Flags]
enum MinimizedMetricsArrangement
{
   BottomLeft = 0,
   BottomRight = 1,
   TopLeft = 2,
   TopRight = 3,
   Left = 0,
   Right = 0,
   Up = 4,
   Down = 4,
   Hide = 8
}

VB Definition:

Structure MINIMIZEDMETRICS
   Public TODO
End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation