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.
KERNINGPAIR (Structures)
.
C# Signature:
[StructLayout(LayoutKind.Sequential)]
struct KERNINGPAIR
{
public ushort wFirst; // might be better off defined as char
public ushort wSecond; // might be better off defined as char
public ushort wFirst;
public ushort wSecond;
public int iKernAmount;
public KERNINGPAIR( ushort wFirst, ushort wSecond, int iKernAmount )
{
this.wFirst = wFirst;
this.wSecond = wSecond;
this.iKernAmount = iKernAmount;
}