2 instantiations of LOGFONT
System.Windows.Forms (2)
misc\GDI\WindowsFont.cs (2)
143this.logFont = new IntNativeMethods.LOGFONT(); 281IntNativeMethods.LOGFONT lf = new IntNativeMethods.LOGFONT();
7 references to LOGFONT
System.Windows.Forms (7)
misc\GDI\NativeMethods.cs (1)
317public LOGFONT( LOGFONT lf )
misc\GDI\UnsafeNativeMethods.cs (3)
272public static extern int IntGetObject(HandleRef hFont, int nSize, [In, Out] IntNativeMethods.LOGFONT lf); 273public static int GetObject(HandleRef hFont, IntNativeMethods.LOGFONT lp) 275int retVal = IntGetObject(hFont, System.Runtime.InteropServices.Marshal.SizeOf(typeof(IntNativeMethods.LOGFONT)), lp);
misc\GDI\WindowsFont.cs (3)
50private IntNativeMethods.LOGFONT logFont; 181private WindowsFont( IntNativeMethods.LOGFONT lf, bool createHandle ) 281IntNativeMethods.LOGFONT lf = new IntNativeMethods.LOGFONT();