Alsing.Drawing.GDI.GDIFont.Destroy C# (CSharp) Method

Destroy() protected method

protected Destroy ( ) : void
return void
        protected override void Destroy()
        {
            if (hFont != (IntPtr) 0)
                NativeMethods.DeleteObject(hFont);
            base.Destroy();
            hFont = (IntPtr) 0;
        }
    }