ENUMLOGFONTEX (Structures)
Last changed: anonymous

.
Summary
The ENUMLOGFONTEX structure contains information about an enumerated font.

C# Definition:

        public const int LF_FACESIZE = 32;

        [StructLayout(LayoutKind.Sequential, CharSet=CharSet.Auto)]
        public struct ENUMLOGFONTEX
        {
            public LOGFONT elfLogFont;
            [MarshalAs(UnmanagedType.ByValTStr, SizeConst=LF_FACESIZE)]
            public string elfFullName;
            [MarshalAs(UnmanagedType.ByValTStr, SizeConst=LF_FACESIZE)]
            public string elfStyle;
            [MarshalAs(UnmanagedType.ByValTStr, SizeConst=LF_FACESIZE)]
            public string elfScript;
        }

User-Defined Field Types:

None.

Notes:

None.

Documentation