Bagikan melalui


Region.Union Metode

Definisi

Perbarui Region ini ke gabungan dirinya sendiri dan GraphicsPathyang ditentukan .

Overload

Union(GraphicsPath)

Perbarui Region ini ke gabungan dirinya sendiri dan GraphicsPathyang ditentukan .

Union(Rectangle)

Memperbarui Region ini ke gabungan dirinya sendiri dan struktur Rectangle yang ditentukan.

Union(RectangleF)

Memperbarui Region ini ke gabungan dirinya sendiri dan struktur RectangleF yang ditentukan.

Union(Region)

Perbarui Region ini ke gabungan dirinya sendiri dan Regionyang ditentukan .

Union(GraphicsPath)

Sumber:
Region.cs
Sumber:
Region.cs
Sumber:
Region.cs
Sumber:
Region.cs
Sumber:
Region.cs

Perbarui Region ini ke gabungan dirinya sendiri dan GraphicsPathyang ditentukan .

public:
 void Union(System::Drawing::Drawing2D::GraphicsPath ^ path);
public void Union (System.Drawing.Drawing2D.GraphicsPath path);
member this.Union : System.Drawing.Drawing2D.GraphicsPath -> unit
Public Sub Union (path As GraphicsPath)

Parameter

path
GraphicsPath

GraphicsPath untuk bersatu dengan Regionini .

Pengecualian

Contoh

Untuk contoh kode, lihat metode Union(RectangleF) dan Complement(GraphicsPath).

Berlaku untuk

Union(Rectangle)

Sumber:
Region.cs
Sumber:
Region.cs
Sumber:
Region.cs
Sumber:
Region.cs
Sumber:
Region.cs

Memperbarui Region ini ke gabungan dirinya sendiri dan struktur Rectangle yang ditentukan.

public:
 void Union(System::Drawing::Rectangle rect);
public void Union (System.Drawing.Rectangle rect);
member this.Union : System.Drawing.Rectangle -> unit
Public Sub Union (rect As Rectangle)

Parameter

rect
Rectangle

Struktur Rectangle untuk bersatu dengan Regionini.

Contoh

Untuk contoh kode, lihat metode Union(RectangleF).

Berlaku untuk

Union(RectangleF)

Sumber:
Region.cs
Sumber:
Region.cs
Sumber:
Region.cs
Sumber:
Region.cs
Sumber:
Region.cs

Memperbarui Region ini ke gabungan dirinya sendiri dan struktur RectangleF yang ditentukan.

public:
 void Union(System::Drawing::RectangleF rect);
public void Union (System.Drawing.RectangleF rect);
member this.Union : System.Drawing.RectangleF -> unit
Public Sub Union (rect As RectangleF)

Parameter

rect
RectangleF

Struktur RectangleF untuk bersatu dengan Regionini.

Contoh

Contoh kode berikut dirancang untuk digunakan dengan Windows Forms, dan memerlukan PaintEventArgse. Kode melakukan tindakan berikut:

  • Membuat persegi panjang pertama dan menggambarnya ke layar dengan warna hitam.

  • Membuat persegi panjang kedua dan menggambarnya ke layar dengan warna merah.

  • Membuat wilayah menggunakan persegi panjang pertama.

  • Mendapatkan area serikat untuk myRegion jika dikombinasikan dengan complementRect.

  • Mengisi area persatuan dengan biru dan menggambarnya ke layar.

Perhatikan bahwa kedua persegi panjang diisi dengan biru, termasuk area tumpang tindih.

void Union_RectF_Example( PaintEventArgs^ e )
{
   // Create the first rectangle and draw it to the screen in black.
   Rectangle regionRect = Rectangle(20,20,100,100);
   e->Graphics->DrawRectangle( Pens::Black, regionRect );

   // create the second rectangle and draw it to the screen in red.
   RectangleF unionRect = RectangleF(90,30,100,100);
   e->Graphics->DrawRectangle( Pens::Red, Rectangle::Round( unionRect ) );

   // Create a region using the first rectangle.
   System::Drawing::Region^ myRegion = gcnew System::Drawing::Region( regionRect );

   // Get the area of union for myRegion when combined with
   // complementRect.
   myRegion->Union( unionRect );

   // Fill the union area of myRegion with blue.
   SolidBrush^ myBrush = gcnew SolidBrush( Color::Blue );
   e->Graphics->FillRegion( myBrush, myRegion );
}
public void Union_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 unionRect = new RectangleF(90, 30, 100, 100);
    e.Graphics.DrawRectangle(Pens.Red,
        Rectangle.Round(unionRect));
             
    // Create a region using the first rectangle.
    Region myRegion = new Region(regionRect);
             
    // Get the area of union for myRegion when combined with
             
    // complementRect.
    myRegion.Union(unionRect);
             
    // Fill the union area of myRegion with blue.
    SolidBrush myBrush = new SolidBrush(Color.Blue);
    e.Graphics.FillRegion(myBrush, myRegion);
}
Public Sub Union_RectF_Example(ByVal e As PaintEventArgs)

    ' Create the first rectangle and draw it to the screen in black.
    Dim regionRect As New Rectangle(20, 20, 100, 100)
    e.Graphics.DrawRectangle(Pens.Black, regionRect)

    ' create the second rectangle and draw it to the screen in red.
    Dim unionRect As New RectangleF(90, 30, 100, 100)
    e.Graphics.DrawRectangle(Pens.Red, Rectangle.Round(unionRect))

    ' Create a region using the first rectangle.
    Dim myRegion As New [Region](regionRect)

    ' Get the area of union for myRegion when combined with
    ' complementRect.
    myRegion.Union(unionRect)

    ' Fill the intersection area of myRegion with blue.
    Dim myBrush As New SolidBrush(Color.Blue)
    e.Graphics.FillRegion(myBrush, myRegion)
End Sub

Berlaku untuk

Union(Region)

Sumber:
Region.cs
Sumber:
Region.cs
Sumber:
Region.cs
Sumber:
Region.cs
Sumber:
Region.cs

Perbarui Region ini ke gabungan dirinya sendiri dan Regionyang ditentukan .

public:
 void Union(System::Drawing::Region ^ region);
public void Union (System.Drawing.Region region);
member this.Union : System.Drawing.Region -> unit
Public Sub Union (region As Region)

Parameter

region
Region

Region untuk bersatu dengan Regionini .

Pengecualian

region null.

Contoh

Untuk contoh kode, lihat metode Union(RectangleF) dan Complement(GraphicsPath).

Berlaku untuk