Region.Xor 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.
Aktualizuje ten obiekt Region do unii minus skrzyżowanie samego siebie z określonym obiektem GraphicsPath.
Przeciążenia
Xor(GraphicsPath) |
Aktualizuje to Region do unii minus skrzyżowanie siebie z określonym GraphicsPath. |
Xor(Rectangle) |
Aktualizuje tę Region do unii, pomniejszonej o strukturę określonego Rectangle. |
Xor(RectangleF) |
Aktualizuje tę Region do unii, pomniejszonej o strukturę określonego RectangleF. |
Xor(Region) |
Aktualizuje to Region do unii minus skrzyżowanie siebie z określonym Region. |
Xor(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 to Region do unii minus skrzyżowanie siebie z określonym GraphicsPath.
public:
void Xor(System::Drawing::Drawing2D::GraphicsPath ^ path);
public void Xor (System.Drawing.Drawing2D.GraphicsPath path);
member this.Xor : System.Drawing.Drawing2D.GraphicsPath -> unit
Public Sub Xor (path As GraphicsPath)
Parametry
- path
- GraphicsPath
GraphicsPath do Xor z tym Region.
Wyjątki
path
jest null
.
Przykłady
Aby zapoznać się z przykładem kodu, zobacz metody Xor(RectangleF) i Complement(GraphicsPath).
Dotyczy
Xor(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 Xor(System::Drawing::Rectangle rect);
public void Xor (System.Drawing.Rectangle rect);
member this.Xor : System.Drawing.Rectangle -> unit
Public Sub Xor (rect As Rectangle)
Parametry
Przykłady
Aby zapoznać się z przykładem kodu, zobacz metodę Xor(RectangleF).
Dotyczy
Xor(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 tę Region do unii, pomniejszonej o strukturę określonego RectangleF.
public:
void Xor(System::Drawing::RectangleF rect);
public void Xor (System.Drawing.RectangleF rect);
member this.Xor : System.Drawing.RectangleF -> unit
Public Sub Xor (rect As RectangleF)
Parametry
- rect
- RectangleF
Struktura RectangleF do Xor(GraphicsPath) z tym 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 przy użyciu pierwszego prostokąta.
Pobiera obszar Xor dla
myRegion
w połączeniu zcomplementRect
.Wypełnia obszar Xor niebieskim i rysuje go na ekranie.
Zwróć uwagę, że oba prostokąty są wypełnione kolorem niebieskim, z wyjątkiem obszaru nakładania się.
void XorExample( 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 xorRect = RectangleF(90,30,100,100);
e->Graphics->DrawRectangle( Pens::Red, Rectangle::Round( xorRect ) );
// Create a region using the first rectangle.
System::Drawing::Region^ myRegion = gcnew System::Drawing::Region( regionRect );
// Get the area of overlap for myRegion when combined with
// complementRect.
myRegion->Xor( xorRect );
// Fill the Xor area of myRegion with blue.
SolidBrush^ myBrush = gcnew SolidBrush( Color::Blue );
e->Graphics->FillRegion( myBrush, myRegion );
}
public void XorExample(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 xorRect = new RectangleF(90, 30, 100, 100);
e.Graphics.DrawRectangle(Pens.Red,
Rectangle.Round(xorRect));
// Create a region using the first rectangle.
Region myRegion = new Region(regionRect);
// Get the area of overlap for myRegion when combined with
// complementRect.
myRegion.Xor(xorRect);
// Fill the Xor area of myRegion with blue.
SolidBrush myBrush = new SolidBrush(Color.Blue);
e.Graphics.FillRegion(myBrush, myRegion);
}
Public Sub XorExample(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 xorRect As New RectangleF(90, 30, 100, 100)
e.Graphics.DrawRectangle(Pens.Red, Rectangle.Round(xorRect))
' Create a region using the first rectangle.
Dim myRegion As New [Region](regionRect)
' Get the area of overlap for myRegion when combined with
' complementRect.
myRegion.Xor(xorRect)
' Fill the intersection area of myRegion with blue.
Dim myBrush As New SolidBrush(Color.Blue)
e.Graphics.FillRegion(myBrush, myRegion)
End Sub
Dotyczy
Xor(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 Xor(System::Drawing::Region ^ region);
public void Xor (System.Drawing.Region region);
member this.Xor : System.Drawing.Region -> unit
Public Sub Xor (region As Region)
Parametry
Wyjątki
region
jest null
.
Przykłady
Aby zapoznać się z przykładem kodu, zobacz metody Xor(RectangleF) i Complement(GraphicsPath).