Region Konstruktory
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.
Inicjuje nowy Regionelement .
Przeciążenia
Region() |
Inicjuje nowy Regionelement . |
Region(GraphicsPath) |
Inicjuje nowy Region element o określonym GraphicsPathparametrze . |
Region(RegionData) |
Inicjuje nową Region z określonych danych. |
Region(Rectangle) |
Inicjuje nową Region strukturę z określonej Rectangle struktury. |
Region(RectangleF) |
Inicjuje nową Region strukturę z określonej RectangleF struktury. |
Region()
Region(GraphicsPath)
- Źródło:
- Region.cs
- Źródło:
- Region.cs
- Źródło:
- Region.cs
Inicjuje nowy Region element o określonym GraphicsPathparametrze .
public:
Region(System::Drawing::Drawing2D::GraphicsPath ^ path);
public Region (System.Drawing.Drawing2D.GraphicsPath path);
new System.Drawing.Region : System.Drawing.Drawing2D.GraphicsPath -> System.Drawing.Region
Public Sub New (path As GraphicsPath)
Parametry
- path
- GraphicsPath
Element GraphicsPath definiujący nowy Regionelement .
Wyjątki
path
to null
.
Uwagi
Ta metoda tworzy nową Region metodę z elementem GraphicsPath. Nowy region jest definiowany jako wnętrze GraphicsPath określonego path
przez parametr .
Dotyczy
Region(RegionData)
- Źródło:
- Region.cs
- Źródło:
- Region.cs
- Źródło:
- Region.cs
Inicjuje nową Region z określonych danych.
public:
Region(System::Drawing::Drawing2D::RegionData ^ rgnData);
public Region (System.Drawing.Drawing2D.RegionData rgnData);
new System.Drawing.Region : System.Drawing.Drawing2D.RegionData -> System.Drawing.Region
Public Sub New (rgnData As RegionData)
Parametry
- rgnData
- RegionData
Element RegionData definiujący wnętrze nowego Regionobiektu .
Wyjątki
rgnData
to null
.
Uwagi
Ta metoda tworzy nowy Region element z wnętrzem zdefiniowanym przez istniejący Regionobiekt . Parametr rgnData
jest tablicą zawierającą definicję istniejącego Regionobiektu .
Dotyczy
Region(Rectangle)
- Źródło:
- Region.cs
- Źródło:
- Region.cs
- Źródło:
- Region.cs
public:
Region(System::Drawing::Rectangle rect);
public Region (System.Drawing.Rectangle rect);
new System.Drawing.Region : System.Drawing.Rectangle -> System.Drawing.Region
Public Sub New (rect As Rectangle)
Parametry
Przykłady
W poniższym przykładzie kodu pokazano, jak używać konstruktora Region i MakeEmpty metody. Ten przykład jest przeznaczony do użycia z Windows Forms. Twórca formularz i wklej do niego następujący kod. Wywołaj metodę FillEmptyRegion
w metodzie obsługi zdarzeń formularza Paint , przekazując e
jako PaintEventArgs.
private:
void FillEmptyRegion( PaintEventArgs^ e )
{
// Create a region from a rectangle.
Rectangle originalRectangle = Rectangle(40,40,40,50);
System::Drawing::Region^ smallRegion = gcnew System::Drawing::Region( originalRectangle );
// Call MakeEmpty.
smallRegion->MakeEmpty();
// Fill the region in red and draw the original rectangle
// in black. Note there is nothing filled in.
e->Graphics->FillRegion( Brushes::Red, smallRegion );
e->Graphics->DrawRectangle( Pens::Black, originalRectangle );
}
private void FillEmptyRegion(PaintEventArgs e)
{
// Create a region from a rectangle.
Rectangle originalRectangle = new Rectangle(40, 40, 40, 50);
Region smallRegion = new Region(originalRectangle);
// Call MakeEmpty.
smallRegion.MakeEmpty();
// Fill the region in red and draw the original rectangle
// in black. Note there is nothing filled in.
e.Graphics.FillRegion(Brushes.Red, smallRegion);
e.Graphics.DrawRectangle(Pens.Black, originalRectangle);
}
Private Sub FillEmptyRegion(ByVal e As PaintEventArgs)
' Create a region from a rectangle.
Dim originalRectangle As New Rectangle(40, 40, 40, 50)
Dim smallRegion As New Region(originalRectangle)
' Call MakeEmpty.
smallRegion.MakeEmpty()
' Fill the region in red and draw the original rectangle
' in black. Note there is nothing filled in.
e.Graphics.FillRegion(Brushes.Red, smallRegion)
e.Graphics.DrawRectangle(Pens.Black, originalRectangle)
End Sub
Uwagi
Ta metoda tworzy nową Region z prostokątnym wnętrzem. Wnętrze jest definiowane rect
przez parametr .
Dotyczy
Region(RectangleF)
- Źródło:
- Region.cs
- Źródło:
- Region.cs
- Źródło:
- Region.cs
Inicjuje nową Region strukturę z określonej RectangleF struktury.
public:
Region(System::Drawing::RectangleF rect);
public Region (System.Drawing.RectangleF rect);
new System.Drawing.Region : System.Drawing.RectangleF -> System.Drawing.Region
Public Sub New (rect As RectangleF)
Parametry
- rect
- RectangleF
Struktura RectangleF definiująca wnętrze nowego Regionobiektu .
Uwagi
Ta metoda tworzy nową Region z prostokątnym wnętrzem. Wnętrze jest definiowane rect
przez parametr .