3 instantiations of LOGFONT
System.Drawing (3)
commonui\System\Drawing\Advanced\Font.cs (2)
406SafeNativeMethods.LOGFONT lf = new SafeNativeMethods.LOGFONT(); 885SafeNativeMethods.LOGFONT lf = new SafeNativeMethods.LOGFONT();
commonui\System\Drawing\SystemFonts.cs (1)
258SafeNativeMethods.LOGFONT itfont = new SafeNativeMethods.LOGFONT();
13 references to LOGFONT
System.Drawing (13)
commonui\System\Drawing\Advanced\Font.cs (2)
406SafeNativeMethods.LOGFONT lf = new SafeNativeMethods.LOGFONT(); 885SafeNativeMethods.LOGFONT lf = new SafeNativeMethods.LOGFONT();
commonui\System\Drawing\Advanced\Gdiplus.cs (4)
4403public LOGFONT( LOGFONT lf ) 4877public static extern int GetObject(HandleRef hObject, int nSize, [In, Out] SafeNativeMethods.LOGFONT lf); 4878public static int GetObject(HandleRef hObject, SafeNativeMethods.LOGFONT lp) { 4879return GetObject(hObject, System.Runtime.InteropServices.Marshal.SizeOf(typeof(SafeNativeMethods.LOGFONT)), lp);
commonui\System\Drawing\NativeMethods.cs (5)
109public SafeNativeMethods.LOGFONT lfCaptionFont; 113public SafeNativeMethods.LOGFONT lfSmCaptionFont; 117public SafeNativeMethods.LOGFONT lfMenuFont; 119public SafeNativeMethods.LOGFONT lfStatusFont; 121public SafeNativeMethods.LOGFONT lfMessageFont;
commonui\System\Drawing\SystemFonts.cs (1)
258SafeNativeMethods.LOGFONT itfont = new SafeNativeMethods.LOGFONT();
commonui\System\Drawing\UnsafeNativeMethods.cs (1)
119public static extern bool SystemParametersInfo(int uiAction, int uiParam, [In, Out] SafeNativeMethods.LOGFONT pvParam, int fWinIni);