다음을 통해 공유


Graphics::ExcludeClip(constRectF&) 메서드(gdiplusgraphics.h)

Graphics::ExcludeClip 메서드는 클리핑 영역을 지정된 사각형과 교차하지 않는 자체 부분으로 업데이트합니다.

구문

Status ExcludeClip(
  const RectF & rect
);

매개 변수

rect

클리핑 영역을 업데이트하는 데 사용할 사각형에 대한 참조입니다.

반환 값

메서드가 성공하면 Status 열거형의 요소인 확인을 반환합니다.

메서드가 실패하면 Status 열거형의 다른 요소 중 하나를 반환합니다.

설명

예제

다음 예제에서는 사각형을 사용하여 클리핑 영역을 업데이트한 다음 업데이트된 클리핑 영역을 보여 주는 사각형을 그립니다.

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

   // Create a RectF object, and set the clipping region to its exclusion.
   RectF excludeRect(100.0f, 100.0f, 200.0f, 200.0f);
   graphics.ExcludeClip(excludeRect);

   // Fill a rectangle to demonstrate the clipping region.
   graphics.FillRectangle(&SolidBrush((255, 0, 0, 255)), 0, 0, 600, 600);
}

요구 사항

   
머리글 gdiplusgraphics.h

추가 정보

그래픽

Rect

StringFormat