MINMAXINFO (Structures)
Last changed: -83.240.106.229

.
Summary
Used with the WM_GETMINMAXINFO message.

C# Definition:

[StructLayout(LayoutKind.Sequential)]
private struct MINMAXINFO
{
    public POINT ptReserved;
    public POINT ptMaxSize;
    public POINT ptMaxPosition;
    public POINT ptMinTrackSize;
    public POINT ptMaxTrackSize;
}

VB Definition:

<StructLayout(LayoutKind.Sequential)> _
Private Structure MINMAXINFO
    Dim ptReserved As POINT
    Dim ptMaxSize As POINT
    Dim ptMaxPosition As POINT
    Dim ptMinTrackSize As POINT
    Dim ptMaxTrackSize As POINT
End Structure

User-Defined Field Types:

POINT

Notes:

None.

Documentation
MINMAXINFO on MSDN