DeleteFont macro (windowsx.h)
The DeleteFont macro deletes a font object, freeing all system resources associated with the font object.
C++
void DeleteFont(
hfont
);
hfont
A handle to the font object.
None
After the font object is deleted, the specified handle is no longer valid.
The DeleteFont macro is equivalent to calling DeleteObject as follows:
syntax
DeleteObject((HGDIOBJ)(HFONT)(hfont))
Requirement | Value |
---|---|
Minimum supported client | Windows 2000 Professional [desktop apps only] |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Target Platform | Windows |
Header | windowsx.h |