Region::Complement (constRect&) 方法 (gdiplusheaders.h)

Region::Complement 方法将此区域更新为指定矩形内部不与该区域相交的部分。

语法

Status Complement(
  const Rect & rect
);

参数

rect

对用于更新此 Region 对象的矩形的引用。

返回值

类型: 状态

如果方法成功,则返回 Ok,这是 Status 枚举的元素。

如果 方法失败,它将返回 Status 枚举的其他元素之一。

注解

示例

以下示例从路径创建一个区域,然后使用矩形更新该区域。

VOID Example_ComplementRect(HDC hdc)
{
   Graphics graphics(hdc);

   SolidBrush solidBrush(Color(255, 255, 0, 0));

   Point points[] = {
      Point(110, 20),
      Point(120, 30),
      Point(100, 60),
      Point(120, 70),
      Point(150, 60),
      Point(140, 10)};

   Rect rect(65, 15, 70, 45);

   GraphicsPath path;

   path.AddClosedCurve(points, 6);

   // Create a region from a path.
   Region region(&path); 

   // Update the region so that it consists of all points inside the 
   // rectangle but outside the path region.
   region.Complement(rect);

   graphics.FillRegion(&solidBrush, &region);
}

要求

要求
Header gdiplusheaders.h

另请参阅

区域

Rect

Status