windows_programming_notes.nbk: Home | Index | Next Page: DestroyWindow | Previous Page: DefWindowProc


 DeleteObject

The DeleteObject function deletes a logical pen, brush, font, bitmap, region, or palette, freeing all system resources associated with the object. After the object is deleted, the specified handle is no longer valid.

    BOOL DeleteObject(
      HGDIOBJ hObject   // handle to graphic object
    );

Parameters

Return Values

If the function succeeds, the return value is nonzero.

If the specified handle is not valid or is currently selected into a DC, the return value is zero.

Windows NT/2000/XP: To get extended error information, call GetLastError.

Remarks

Do not delete a drawing object (pen or brush) while it is still selected into a DC.

When a pattern brush is deleted, the bitmap associated with the brush is not deleted. The bitmap must be deleted independently.

Requirements


windows_programming_notes.nbk: Home | Index | Next Page: DestroyWindow | Previous Page: DefWindowProc


Notebook exported on Monday, 7 July 2008, 18:56:50 PM Eastern Daylight Time