2 writes to _handle
System.Windows.Forms (2)
System\Windows\Forms\Control.FontHandleWrapper.cs (2)
17
internal FontHandleWrapper(Font font) =>
_handle
= (HFONT)font.ToHfont();
33
_handle
= default;
4 references to _handle
System.Windows.Forms (4)
System\Windows\Forms\Control.FontHandleWrapper.cs (4)
23
Debug.Assert(!
_handle
.IsNull, "FontHandleWrapper disposed, but still being accessed");
24
return
_handle
;
30
if (!
_handle
.IsNull)
32
PInvokeCore.DeleteObject(
_handle
);