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

Region::Xor 方法将此区域更新为自身的非交互部分和指定矩形的内部。

语法

Status Xor(
  const Rect & rect
);

参数

rect

对用于更新此区域的矩形的引用。

返回值

类型: 状态

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

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

注解

示例

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

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

  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;
   SolidBrush solidBrush(Color(255, 255, 0, 0));

   path.AddClosedCurve(points, 6);

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

   // Perform an exclusive OR operation on the region and a rectangle.
   pathRegion.Xor(rect);

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

要求

   
标头 gdiplusheaders.h

另请参阅

区域

Rect

Status