CDC::FillSolidRect
Visual Studio 2012
Call this member function to fill the given rectangle with the specified solid color.
void FillSolidRect( LPCRECT lpRect, COLORREF clr ); void FillSolidRect( int x, int y, int cx, int cy, COLORREF clr );
FillSolidRect is very similar to CDC::FillRect; however, FillSolidRect uses only solid colors (indicated by the COLORREF parameter), while FillRect takes a brush and therefore can be used to fill a rectangle with a solid color, a dithered color, hatched brushes, or a pattern. FillSolidRect usually is faster than FillRect.
Note
|
|---|
|
When you call FillSolidRect, the background color, which was previously set using SetBkColor, is set to the color indicated by clr. |
Note