ExcludeClipRect
描述:这个函数将创建一个新的区域,这个新的区域 由 现有的区域 去掉 指定区域 后 组成。
功能:可以让DC不刷新某个指定区域。
说明:这个函数在MFC中的CDC类里有封装。
int ExcludeClipRect(
HDC hdc, // handle to DC
int nLeftRect, // x-coord of upper-left corner
int nTopRect, // y-coord of upper-left corner
int nRightRect, // x-coord of lower-right corner
int nBottomRect // y-coord of lower-right corner
);
本文为“老吴笔记”的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。