CreateSolidBrush (Windows CE 5.0)

Send Feedback

This function creates a logical brush that has the specified solid color.

HBRUSH CreateSolidBrush(COLORREFcrColor);

Parameters

  • crColor
    [in] Specifies the color of the brush.

Return Values

A handle that identifies a logical brush indicates success.

NULL indicates failure.

To get extended error information, call GetLastError.

Remarks

A solid brush is a bitmap that the system uses to paint the interiors of filled shapes.

After an application creates a brush by calling CreateSolidBrush, it can select that brush into any device context by calling the SelectObject function.

Windows CE does not support dithered brushes.

When you no longer need the brush, call the DeleteObject function to delete it.

Requirements

OS Versions: Windows CE 1.0 and later.
Header: Windows.h.
Link Library: Coredll.lib.

See Also

SelectObject | DeleteObject | GDI Functions

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.