Partager via


Region.Union Méthode

Définition

Met à jour cette Region à l’union de lui-même et au GraphicsPathspécifié.

Surcharges

Union(GraphicsPath)

Met à jour cette Region à l’union de lui-même et au GraphicsPathspécifié.

Union(Rectangle)

Met à jour cette Region à l’union de lui-même et à la structure Rectangle spécifiée.

Union(RectangleF)

Met à jour cette Region à l’union de lui-même et à la structure RectangleF spécifiée.

Union(Region)

Met à jour cette Region à l’union de lui-même et au Regionspécifié.

Union(GraphicsPath)

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

Met à jour cette Region à l’union de lui-même et au GraphicsPathspécifié.

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)

Paramètres

path
GraphicsPath

Le GraphicsPath de s’unir avec cette Region.

Exceptions

path est null.

Exemples

Pour obtenir un exemple de code, consultez les méthodes Union(RectangleF) et Complement(GraphicsPath).

S’applique à

Union(Rectangle)

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

Met à jour cette Region à l’union de lui-même et à la structure Rectangle spécifiée.

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)

Paramètres

rect
Rectangle

La structure Rectangle à unir avec ce Region.

Exemples

Pour obtenir un exemple de code, consultez la méthode Union(RectangleF).

S’applique à

Union(RectangleF)

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

Met à jour cette Region à l’union de lui-même et à la structure RectangleF spécifiée.

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)

Paramètres

rect
RectangleF

La structure RectangleF à unir avec ce Region.

Exemples

L’exemple de code suivant est conçu pour une utilisation avec Windows Forms et nécessite PaintEventArgse. Le code effectue les actions suivantes :

  • Crée le premier rectangle et le dessine sur l’écran en noir.

  • Crée un deuxième rectangle et le dessine sur l’écran en rouge.

  • Crée une région à l’aide du premier rectangle.

  • Obtient la zone d’union pour myRegion lorsqu’elle est combinée à complementRect.

  • Remplit la zone d’union avec du bleu et la dessine à l’écran.

Notez que les deux rectangles sont remplis de bleu, y compris la zone de chevauchement.

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

S’applique à

Union(Region)

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

Met à jour cette Region à l’union de lui-même et au Regionspécifié.

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)

Paramètres

region
Region

Le Region de s’unir avec cette Region.

Exceptions

region est null.

Exemples

Pour obtenir un exemple de code, consultez la méthode Union(RectangleF) et Complement(GraphicsPath).

S’applique à