다음을 통해 공유


Region::Complement(constRect&) 메서드(gdiplusheaders.h)

Region::Complement 메서드는 이 영역을 이 영역과 교차하지 않는 지정된 사각형 내부 부분으로 업데이트합니다.

구문

Status Complement(
  const Rect & rect
);

매개 변수

rect

Region 개체를 업데이트하는 데 사용할 사각형에 대한 참조입니다.

반환 값

형식: 상태

메서드가 성공하면 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);
}

요구 사항

요구 사항
헤더 gdiplusheaders.h

추가 정보

지역

Rect

상태