BOOL CreateRectRgn(
int nLeftRect,
int nTopRect,
int nRightRect,
int nBottomRect
);
这个方法通过传递矩形的左上角和右下角的坐标参数来创建一个矩形形状的区域,并将其赋值给当前的 CRgn 对象。
使用示例:
CRgn myRectRgn;
// 创建一个矩形形状的区域,左上角坐标为(10, 10),右下角坐标为(100, 50)
myRectRgn.CreateRectRgn(10, 10, 100, 50);
在这个示例中,CreateRectRgn 方法被用于创建一个矩形形状的区域对象 myRectRgn,其左上角和右下角坐标分别为 (10, 10) 和 (100, 50)。这样,myRectRgn 就代表了一个矩形形状的区域。
转载请注明出处:http://www.pingtaimeng.com/article/detail/22128/MFC/CRgn