CDC::FillSolidRect

void FillSolidRect( LPCRECT lpRect, COLORREF clr );

void FillSolidRect( int x, int y, int cx, int cy, COLORREF clr);

参数说明

lpRect

Specifies the bounding rectangle (in logical units). You canpass either a pointer to a RECT data structure or a CRect objectfor this parameter.

指向RECT数据结构的指针,包含被填充的矩形的逻辑坐标,可以为该参数传递RECT数据结构或Crect对象的指针

clr Specifies the color toto be used to fill the rectangle.

指定填充矩形使用的颜色。

x

Specifies the logical x-coordinate of the upper-left corner ofthe rectangle.

矩形左上角的X逻辑坐标。

y

Specifies the logical y-coordinate of the upper-left corner ofthe destination rectangle.

矩形左上角的Y逻辑坐标。

cx

Specifies the width of the rectangle.

指定矩形的宽度。

cy

Specifies the height of the rectangle.

CDC::FillSolidRect

指定矩形的高度。

备注

Call this member function to fill the given rectangle with thespecified solid color.

调用该成员函数用指定的固体色填充矩形。

FillSolidRect is very similar to CDC::FillRect; however,FillSolidRect uses only solid colors (indicated by the COLORREFparameter), while FillRect takes a brush and therefore can be usedto fill a rectangle with a solid color, a dithered color, hatchedbrushes, or a pattern. FillSolidRect usually is faster thanFillRect.

FillSolidRect与CDC::FillRect类似,FillSolidRect只能使用固体色(由COLORREF参数决定)。但FillRect带有画刷,因此可以为矩形填充固体色、抖动色、阴影或使用调色板。FillRect通常比FillSolidRect慢。

Note When you callFillSolidRect, the background color, which was previously set usingSetBkColor, is set to the color indicated by clr.

调用FillSolidRect时,以前用SetBkColor设置的背景色,被设置为clr指定的颜色。

  

爱华网本文地址 » http://www.aihuau.com/a/25101015/245940.html

更多阅读

ksoap2连接webservice原理 webservice原理和技术

1.概述对于J2ME访问远端的WebService,除了官方标准JSR 172,我们还有两种选择:lkSOAPlWingfootWingfoot是由Wingfoot Software(www.wingfoot.com)出品的一款J2ME(CLDC/CDC)SOAP1.1的轻量级实现方案。kSOAP是Enhydra.org的一个开源作

CDC简介_c/c++_电脑编程网 cdc25c

CDC简介作者:刘胜 和c/c++相关 2009916简介:这是CDC简介的详细页面,介绍了和c/c++,有关的知识,加入收藏请按键盘ctrl+D,要查看更多相关信息,请点击此处CPaintDC dc(th

VC中CDC与HDC的区别以及二者之间的转换 hdc cdc

微软喜欢将内核对象标识,称为句柄。应该都是32位或者64位整数HINSTANCE: 进程实例或者句柄HANDLE:文件句柄HWND:窗口的句柄,用来标识窗口对象HPEN:画笔句柄,用来标识画笔对象HBITMAP:位图句柄HDC:设备环境句柄CWnd:是提供窗口处理的一个MF

声明:《CDC::FillSolidRect》为网友一米一光年分享!如侵犯到您的合法权益请联系我们删除