7 references to NativeFont
System.Drawing.Common (7)
System\Drawing\Font.cs (3)
209
PInvokeGdiPlus.GdipGetFontHeight(
NativeFont
, graphics.Pointer(), &height).ThrowIfFailed();
218
PInvokeGdiPlus.GdipGetFontHeightGivenDPI(
NativeFont
, dpi, &height).ThrowIfFailed();
310
PInvokeGdiPlus.GdipGetLogFont(
NativeFont
, graphics.Pointer(), (LOGFONTW*)lf).ThrowIfFailed();
System\Drawing\Graphics.cs (3)
1750
font.
NativeFont
,
1812
font.
NativeFont
,
1980
font.
NativeFont
,
System\Drawing\PointerExtensions.cs (1)
26
public static GpFont* Pointer(this Font? font) => font is null ? null : font.
NativeFont
;