3 writes to nativeHandle
System.Windows.Forms (3)
misc\GDI\WindowsPen.cs (3)
121
this.
nativeHandle
= IntSafeNativeMethods.CreatePen((int) this.style, this.width, ColorTranslator.ToWin32(this.color) );
132
this.
nativeHandle
= IntSafeNativeMethods.ExtCreatePen((int)this.style, this.width, lb, 0, null );
162
this.
nativeHandle
= IntPtr.Zero;
4 references to nativeHandle
System.Windows.Forms (4)
misc\GDI\WindowsPen.cs (4)
157
if (this.
nativeHandle
!= IntPtr.Zero && dc != null)
161
dc.DeleteObject(this.
nativeHandle
, GdiObjectType.Pen);
181
if( this.
nativeHandle
== IntPtr.Zero )
186
return this.
nativeHandle
;