Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Structures, prefix the name with the module name and a period.
MINMAXINFO (Structures)
.
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