Region.Complement 메서드

정의

RegionRegion교차하지 않는 지정된 RectangleF 구조의 부분으로 업데이트합니다.

오버로드

Complement(Region)

Region교차하지 않는 지정된 Region 부분을 포함하도록 이 Region 업데이트합니다.

Complement(RectangleF)

RegionRegion교차하지 않는 지정된 RectangleF 구조체의 부분을 포함하도록 업데이트합니다.

Complement(GraphicsPath)

Region교차하지 않는 지정된 GraphicsPath 부분을 포함하도록 이 Region 업데이트합니다.

Complement(Rectangle)

RegionRegion교차하지 않는 지정된 Rectangle 구조체의 부분을 포함하도록 업데이트합니다.

Complement(Region)

Source:
Region.cs
Source:
Region.cs
Source:
Region.cs
Source:
Region.cs
Source:
Region.cs

Region교차하지 않는 지정된 Region 부분을 포함하도록 이 Region 업데이트합니다.

public void Complement (System.Drawing.Region region);

매개 변수

region
Region

Region 개체를 보완할 Region 개체입니다.

예외

region null.

예제

다음 예제는 Windows Forms에서 사용하도록 설계되었으며 Paint 이벤트 처리기의 매개 변수인 PaintEventArgse필요합니다. 코드는 다음 작업을 수행합니다.

  • 사각형을 만들고 검은색으로 화면에 그립니다.

  • 첫 번째 사각형과 교차하고 빨간색으로 화면에 그리는 두 번째 사각형을 만듭니다.

  • 첫 번째 사각형을 사용하여 하나의 영역을 만들고 두 번째 사각형을 사용하여 두 번째 영역을 만듭니다.

  • 두 번째 지역과 결합된 경우 첫 번째 영역의 보수를 가져옵니다.

  • 보수 영역을 파란색으로 채우고 화면에 그립니다.

첫 번째 영역과 교차하지 않는 두 번째 영역의 영역은 파란색으로 표시됩니다.

public void Complement_Region_Example(PaintEventArgs e)
{
             
    // Create the first rectangle and draw it to the screen in black.
    Rectangle regionRect = new Rectangle(20, 20, 100, 100);
    e.Graphics.DrawRectangle(Pens.Black, regionRect);
             
    // Create the second rectangle and draw it to the screen in red.
    Rectangle complementRect = new Rectangle(90, 30, 100, 100);
    e.Graphics.DrawRectangle(Pens.Red, complementRect);
             
    // Create a region from the first rectangle.
    Region myRegion = new Region(regionRect);
             
    // Create a complement region.
    Region complementRegion = new Region(complementRect);
             
    // Get the complement of myRegion when combined with
             
    // complementRegion.
    myRegion.Complement(complementRegion);
             
    // Fill the complement area with blue.
    SolidBrush myBrush = new SolidBrush(Color.Blue);
    e.Graphics.FillRegion(myBrush, myRegion);
}

적용 대상

.NET 9 및 기타 버전
제품 버전
.NET 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

Complement(RectangleF)

Source:
Region.cs
Source:
Region.cs
Source:
Region.cs
Source:
Region.cs
Source:
Region.cs

RegionRegion교차하지 않는 지정된 RectangleF 구조체의 부분을 포함하도록 업데이트합니다.

public void Complement (System.Drawing.RectangleF rect);

매개 변수

rect
RectangleF

Region보완할 RectangleF 구조체입니다.

예제

다음 코드 예제는 Windows Forms에서 사용하도록 설계되었으며 Paint 이벤트 처리기의 매개 변수인 PaintEventArgse필요합니다. 코드는 다음 작업을 수행합니다.

  • 사각형을 만들어 검은색으로 화면에 그립니다.

  • 첫 번째 사각형과 교차하고 빨간색으로 화면에 그리는 두 번째 사각형을 만듭니다.

  • 첫 번째 사각형을 사용하여 영역을 만듭니다.

  • 두 번째 사각형과 결합된 해당 영역의 보수를 가져옵니다.

  • 보수 영역을 파란색으로 채우고 화면에 그립니다.

영역과 교차하지 않는 두 번째 사각형의 영역은 파란색으로 표시됩니다.

public void Complement_RectF_Example(PaintEventArgs e)
{
             
    // Create the first rectangle and draw it to the screen in black.
    Rectangle regionRect = new Rectangle(20, 20, 100, 100);
    e.Graphics.DrawRectangle(Pens.Black, regionRect);
             
    // Create the second rectangle and draw it to the screen in red.
    RectangleF complementRect = new RectangleF(90, 30, 100, 100);
    e.Graphics.DrawRectangle(Pens.Red,
        Rectangle.Round(complementRect));
             
    // Create a region using the first rectangle.
    Region myRegion = new Region(regionRect);
             
    // Get the complement of the region combined with the second
             
    // rectangle.
    myRegion.Complement(complementRect);
             
    // Fill the complement area with blue.
    SolidBrush myBrush = new SolidBrush(Color.Blue);
    e.Graphics.FillRegion(myBrush, myRegion);
}

적용 대상

.NET 9 및 기타 버전
제품 버전
.NET 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

Complement(GraphicsPath)

Source:
Region.cs
Source:
Region.cs
Source:
Region.cs
Source:
Region.cs
Source:
Region.cs

Region교차하지 않는 지정된 GraphicsPath 부분을 포함하도록 이 Region 업데이트합니다.

public void Complement (System.Drawing.Drawing2D.GraphicsPath path);

매개 변수

path
GraphicsPath

Region보완할 GraphicsPath.

예외

예제

다음 코드 예제는 Windows Forms에서 사용하도록 설계되었으며 Paint 이벤트 처리기의 매개 변수인 PaintEventArgse필요합니다. 코드는 다음 작업을 수행합니다.

  • 사각형을 만들어 검은색으로 화면에 그립니다.

  • 첫 번째 사각형과 교차하고 빨간색으로 화면에 그리는 두 번째 사각형을 만듭니다.

  • 첫 번째 사각형을 사용하여 영역을 만듭니다.

  • GraphicsPath만들고 두 번째 사각형을 추가합니다.

  • GraphicsPath결합할 때 영역의 보수를 가져옵니다.

  • 보수 영역을 파란색으로 채우고 화면에 그립니다.

영역과 교차하지 않는 GraphicsPath 영역은 파란색입니다.

public void Complement_Path_Example(PaintEventArgs e)
{
             
    // Create the first rectangle and draw it to the screen in black.
    Rectangle regionRect = new Rectangle(20, 20, 100, 100);
    e.Graphics.DrawRectangle(Pens.Black, regionRect);
             
    // Create the second rectangle and draw it to the screen in red.
    Rectangle complementRect = new Rectangle(90, 30, 100, 100);
    e.Graphics.DrawRectangle(Pens.Red, complementRect);
             
    // Create a graphics path and add the second rectangle to it.
    GraphicsPath complementPath = new GraphicsPath();
    complementPath.AddRectangle(complementRect);
             
    // Create a region using the first rectangle.
    Region myRegion = new Region(regionRect);
             
    // Get the complement of myRegion when combined with
             
    // complementPath.
    myRegion.Complement(complementPath);
             
    // Fill the complement area with blue.
    SolidBrush myBrush = new SolidBrush(Color.Blue);
    e.Graphics.FillRegion(myBrush, myRegion);
}

적용 대상

.NET 9 및 기타 버전
제품 버전
.NET 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

Complement(Rectangle)

Source:
Region.cs
Source:
Region.cs
Source:
Region.cs
Source:
Region.cs
Source:
Region.cs

RegionRegion교차하지 않는 지정된 Rectangle 구조체의 부분을 포함하도록 업데이트합니다.

public void Complement (System.Drawing.Rectangle rect);

매개 변수

rect
Rectangle

Region보완할 Rectangle 구조체입니다.

예제

예를 들어 Complement(RectangleF) 메서드를 참조하세요.

적용 대상

.NET 9 및 기타 버전
제품 버전
.NET 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9