Region.Intersect Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Przeciążenia
Intersect(GraphicsPath) |
Aktualizuje tę Region do przecięć się z określonym GraphicsPath. |
Intersect(Rectangle) |
Aktualizuje to Region do przecięcia się z określoną strukturą Rectangle. |
Intersect(RectangleF) |
Aktualizuje to Region do przecięcia się z określoną strukturą RectangleF. |
Intersect(Region) |
Intersect(GraphicsPath)
- Źródło:
- Region.cs
- Źródło:
- Region.cs
- Źródło:
- Region.cs
- Źródło:
- Region.cs
- Źródło:
- Region.cs
Aktualizuje tę Region do przecięć się z określonym GraphicsPath.
public:
void Intersect(System::Drawing::Drawing2D::GraphicsPath ^ path);
public void Intersect (System.Drawing.Drawing2D.GraphicsPath path);
member this.Intersect : System.Drawing.Drawing2D.GraphicsPath -> unit
Public Sub Intersect (path As GraphicsPath)
Parametry
- path
- GraphicsPath
GraphicsPath, aby przecinać się z tym Region.
Przykłady
Aby zapoznać się z przykładami kodu, zobacz metody RectangleF.Intersect(RectangleF) i Complement(GraphicsPath).
Dotyczy
Intersect(Rectangle)
- Źródło:
- Region.cs
- Źródło:
- Region.cs
- Źródło:
- Region.cs
- Źródło:
- Region.cs
- Źródło:
- Region.cs
public:
void Intersect(System::Drawing::Rectangle rect);
public void Intersect (System.Drawing.Rectangle rect);
member this.Intersect : System.Drawing.Rectangle -> unit
Public Sub Intersect (rect As Rectangle)
Parametry
Przykłady
Aby zapoznać się z przykładem kodu, zobacz metodę Intersect(RectangleF).
Dotyczy
Intersect(RectangleF)
- Źródło:
- Region.cs
- Źródło:
- Region.cs
- Źródło:
- Region.cs
- Źródło:
- Region.cs
- Źródło:
- Region.cs
Aktualizuje to Region do przecięcia się z określoną strukturą RectangleF.
public:
void Intersect(System::Drawing::RectangleF rect);
public void Intersect (System.Drawing.RectangleF rect);
member this.Intersect : System.Drawing.RectangleF -> unit
Public Sub Intersect (rect As RectangleF)
Parametry
- rect
- RectangleF
Struktura RectangleF, która ma przecinać się z tą Region.
Przykłady
Poniższy przykład kodu jest przeznaczony do użycia z formularzami Systemu Windows i wymaga PaintEventArgse
, który jest parametrem programu obsługi zdarzeń Paint. Kod wykonuje następujące akcje:
Tworzy pierwszy prostokąt i rysuje go na ekranie w kolorze czarnym.
Tworzy drugi prostokąt i rysuje go na ekranie na czerwono.
Tworzy region na podstawie pierwszego prostokąta.
Pobiera obszar skrzyżowania dla regionu w połączeniu z drugim prostokątem.
Wypełnia obszar skrzyżowania niebieskim i rysuje go na ekranie.
Zwróć uwagę, że tylko nakładający się obszar dla regionu i prostokąt jest niebieski.
public:
void Intersect_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 complementRect = RectangleF(90,30,100,100);
e->Graphics->DrawRectangle( Pens::Red, Rectangle::Round( complementRect ) );
// Create a region using the first rectangle.
System::Drawing::Region^ myRegion = gcnew System::Drawing::Region( regionRect );
// Get the area of intersection for myRegion when combined with
// complementRect.
myRegion->Intersect( complementRect );
// Fill the intersection area of myRegion with blue.
SolidBrush^ myBrush = gcnew SolidBrush( Color::Blue );
e->Graphics->FillRegion( myBrush, myRegion );
}
public void Intersect_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 area of intersection for myRegion when combined with
// complementRect.
myRegion.Intersect(complementRect);
// Fill the intersection area of myRegion with blue.
SolidBrush myBrush = new SolidBrush(Color.Blue);
e.Graphics.FillRegion(myBrush, myRegion);
}
Public Sub Intersect_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 complementRect As New RectangleF(90, 30, 100, 100)
e.Graphics.DrawRectangle(Pens.Red, _
Rectangle.Round(complementRect))
' Create a region using the first rectangle.
Dim myRegion As New [Region](regionRect)
' Get the area of intersection for myRegion when combined with
' complementRect.
myRegion.Intersect(complementRect)
' Fill the intersection area of myRegion with blue.
Dim myBrush As New SolidBrush(Color.Blue)
e.Graphics.FillRegion(myBrush, myRegion)
End Sub
Dotyczy
Intersect(Region)
- Źródło:
- Region.cs
- Źródło:
- Region.cs
- Źródło:
- Region.cs
- Źródło:
- Region.cs
- Źródło:
- Region.cs
public:
void Intersect(System::Drawing::Region ^ region);
public void Intersect (System.Drawing.Region region);
member this.Intersect : System.Drawing.Region -> unit
Public Sub Intersect (region As Region)
Parametry
Przykłady
Przykłady kodu można znaleźć w.
metody Intersect(RectangleF) i Complement(GraphicsPath)