Graphics.FillClosedCurve Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Vyplní vnitřní část uzavřené kardinalní křivky definované polem Point struktur.
Přetížení
FillClosedCurve(Brush, Point[]) |
Vyplní vnitřní část uzavřené kardinalní křivky definované polem Point struktur. |
FillClosedCurve(Brush, PointF[]) |
Vyplní vnitřní část uzavřené kardinalní křivky definované polem PointF struktur. |
FillClosedCurve(Brush, ReadOnlySpan<Point>) | |
FillClosedCurve(Brush, ReadOnlySpan<PointF>) | |
FillClosedCurve(Brush, Point[], FillMode) |
Vyplní vnitřní část uzavřené kardinalní křivky definované polem Point struktur pomocí zadaného režimu výplně. |
FillClosedCurve(Brush, PointF[], FillMode) |
Vyplní vnitřní část uzavřené kardinalní křivky definované polem PointF struktur pomocí zadaného režimu výplně. |
FillClosedCurve(Brush, ReadOnlySpan<Point>, FillMode) | |
FillClosedCurve(Brush, ReadOnlySpan<PointF>, FillMode) | |
FillClosedCurve(Brush, Point[], FillMode, Single) |
Vyplní vnitřní část uzavřené kardinalní křivky definované polem Point struktur pomocí zadaného režimu výplně a napětí. |
FillClosedCurve(Brush, PointF[], FillMode, Single) |
Vyplní vnitřní část uzavřené kardinalní křivky definované polem PointF struktur pomocí zadaného režimu výplně a napětí. |
FillClosedCurve(Brush, ReadOnlySpan<Point>, FillMode, Single) | |
FillClosedCurve(Brush, ReadOnlySpan<PointF>, FillMode, Single) |
FillClosedCurve(Brush, Point[])
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
Vyplní vnitřní část uzavřené kardinalní křivky definované polem Point struktur.
public:
void FillClosedCurve(System::Drawing::Brush ^ brush, cli::array <System::Drawing::Point> ^ points);
public:
void FillClosedCurve(System::Drawing::Brush ^ brush, ... cli::array <System::Drawing::Point> ^ points);
public void FillClosedCurve (System.Drawing.Brush brush, System.Drawing.Point[] points);
public void FillClosedCurve (System.Drawing.Brush brush, params System.Drawing.Point[] points);
member this.FillClosedCurve : System.Drawing.Brush * System.Drawing.Point[] -> unit
Public Sub FillClosedCurve (brush As Brush, points As Point())
Public Sub FillClosedCurve (brush As Brush, ParamArray points As Point())
Parametry
Výjimky
Příklady
Následující příklad kódu je určený pro použití s Windows Forms a vyžaduje PaintEventArgse
, což je parametr obslužné rutiny události Paint. Kód provede následující akce:
Vytvoří pevný červený štětec.
Vytvoří matici čtyř bodů pro definování křivky.
Vyplní křivku na obrazovce.
Křivka má výchozí napětí 0,5.
public:
void FillClosedCurvePoint( PaintEventArgs^ e )
{
// Create solid brush.
SolidBrush^ redBrush = gcnew SolidBrush( Color::Red );
//Create array of points for curve.
Point point1 = Point(100,100);
Point point2 = Point(200,50);
Point point3 = Point(250,200);
Point point4 = Point(50,150);
array<Point>^ points = {point1,point2,point3,point4};
// Fill curve on screen.
e->Graphics->FillClosedCurve( redBrush, points );
}
public void FillClosedCurvePoint(PaintEventArgs e)
{
// Create solid brush.
SolidBrush redBrush = new SolidBrush(Color.Red);
//Create array of points for curve.
Point point1 = new Point(100, 100);
Point point2 = new Point(200, 50);
Point point3 = new Point(250, 200);
Point point4 = new Point(50, 150);
Point[] points = {point1, point2, point3, point4};
// Fill curve on screen.
e.Graphics.FillClosedCurve(redBrush, points);
}
Public Sub FillClosedCurvePoint(ByVal e As PaintEventArgs)
' Create solid brush.
Dim redBrush As New SolidBrush(Color.Red)
'Create array of points for curve.
Dim point1 As New Point(100, 100)
Dim point2 As New Point(200, 50)
Dim point3 As New Point(250, 200)
Dim point4 As New Point(50, 150)
Dim points As Point() = {point1, point2, point3, point4}
' Fill curve on screen.
e.Graphics.FillClosedCurve(redBrush, points)
End Sub
Poznámky
Tato metoda vyplní vnitřní část uzavřené kardinaly, která prochází každým bodem pole. Pokud poslední bod neodpovídá prvnímu bodu, přidá se další segment křivky od posledního bodu k prvnímu bodu, který ho zavře.
Matice bodů musí obsahovat alespoň čtyři Point struktury.
Tato metoda používá výchozí napětí 0,5.
Platí pro
FillClosedCurve(Brush, PointF[])
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
Vyplní vnitřní část uzavřené kardinalní křivky definované polem PointF struktur.
public:
void FillClosedCurve(System::Drawing::Brush ^ brush, cli::array <System::Drawing::PointF> ^ points);
public:
void FillClosedCurve(System::Drawing::Brush ^ brush, ... cli::array <System::Drawing::PointF> ^ points);
public void FillClosedCurve (System.Drawing.Brush brush, System.Drawing.PointF[] points);
public void FillClosedCurve (System.Drawing.Brush brush, params System.Drawing.PointF[] points);
member this.FillClosedCurve : System.Drawing.Brush * System.Drawing.PointF[] -> unit
Public Sub FillClosedCurve (brush As Brush, points As PointF())
Public Sub FillClosedCurve (brush As Brush, ParamArray points As PointF())
Parametry
Výjimky
Příklady
Následující příklad kódu je určený pro použití s Windows Forms a vyžaduje PaintEventArgse
, což je parametr obslužné rutiny události Paint. Kód provede následující akce:
Vytvoří pevný červený štětec.
Vytvoří matici čtyř bodů pro definování křivky.
Vyplní křivku na obrazovce.
Křivka má výchozí napětí 0,5.
public:
void FillClosedCurvePointF( PaintEventArgs^ e )
{
// Create solid brush.
SolidBrush^ redBrush = gcnew SolidBrush( Color::Red );
//Create array of points for curve.
PointF point1 = PointF(100.0F,100.0F);
PointF point2 = PointF(200.0F,50.0F);
PointF point3 = PointF(250.0F,200.0F);
PointF point4 = PointF(50.0F,150.0F);
array<PointF>^ points = {point1,point2,point3,point4};
// Fill curve on screen.
e->Graphics->FillClosedCurve( redBrush, points );
}
public void FillClosedCurvePointF(PaintEventArgs e)
{
// Create solid brush.
SolidBrush redBrush = new SolidBrush(Color.Red);
//Create array of points for curve.
PointF point1 = new PointF(100.0F, 100.0F);
PointF point2 = new PointF(200.0F, 50.0F);
PointF point3 = new PointF(250.0F, 200.0F);
PointF point4 = new PointF(50.0F, 150.0F);
PointF[] points = {point1, point2, point3, point4};
// Fill curve on screen.
e.Graphics.FillClosedCurve(redBrush, points);
}
Public Sub FillClosedCurvePointF(ByVal e As PaintEventArgs)
' Create solid brush.
Dim redBrush As New SolidBrush(Color.Red)
'Create array of points for curve.
Dim point1 As New PointF(100.0F, 100.0F)
Dim point2 As New PointF(200.0F, 50.0F)
Dim point3 As New PointF(250.0F, 200.0F)
Dim point4 As New PointF(50.0F, 150.0F)
Dim points As PointF() = {point1, point2, point3, point4}
' Fill curve on screen.
e.Graphics.FillClosedCurve(redBrush, points)
End Sub
Poznámky
Tato metoda vyplní vnitřní část uzavřené kardinaly, která prochází každým bodem pole. Pokud poslední bod neodpovídá prvnímu bodu, přidá se další segment křivky od posledního bodu k prvnímu bodu, který ho zavře.
Matice bodů musí obsahovat alespoň čtyři PointF struktury.
Tato metoda používá výchozí napětí 0,5.
Platí pro
FillClosedCurve(Brush, ReadOnlySpan<Point>)
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
public:
void FillClosedCurve(System::Drawing::Brush ^ brush, ReadOnlySpan<System::Drawing::Point> points);
public void FillClosedCurve (System.Drawing.Brush brush, scoped ReadOnlySpan<System.Drawing.Point> points);
member this.FillClosedCurve : System.Drawing.Brush * ReadOnlySpan<System.Drawing.Point> -> unit
Public Sub FillClosedCurve (brush As Brush, points As ReadOnlySpan(Of Point))
Parametry
- brush
- Brush
- points
- ReadOnlySpan<Point>
Platí pro
FillClosedCurve(Brush, ReadOnlySpan<PointF>)
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
public:
void FillClosedCurve(System::Drawing::Brush ^ brush, ReadOnlySpan<System::Drawing::PointF> points);
public void FillClosedCurve (System.Drawing.Brush brush, scoped ReadOnlySpan<System.Drawing.PointF> points);
member this.FillClosedCurve : System.Drawing.Brush * ReadOnlySpan<System.Drawing.PointF> -> unit
Public Sub FillClosedCurve (brush As Brush, points As ReadOnlySpan(Of PointF))
Parametry
- brush
- Brush
- points
- ReadOnlySpan<PointF>
Platí pro
FillClosedCurve(Brush, Point[], FillMode)
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
Vyplní vnitřní část uzavřené kardinalní křivky definované polem Point struktur pomocí zadaného režimu výplně.
public:
void FillClosedCurve(System::Drawing::Brush ^ brush, cli::array <System::Drawing::Point> ^ points, System::Drawing::Drawing2D::FillMode fillmode);
public void FillClosedCurve (System.Drawing.Brush brush, System.Drawing.Point[] points, System.Drawing.Drawing2D.FillMode fillmode);
member this.FillClosedCurve : System.Drawing.Brush * System.Drawing.Point[] * System.Drawing.Drawing2D.FillMode -> unit
Public Sub FillClosedCurve (brush As Brush, points As Point(), fillmode As FillMode)
Parametry
Výjimky
Příklady
Následující příklad kódu je určený pro použití s Windows Forms a vyžaduje PaintEventArgse
, což je parametr obslužné rutiny události Paint. Kód provede následující akce:
Vytvoří pevný červený štětec.
Vytvoří matici čtyř bodů pro definování křivky.
Nastaví režim výplně na Winding.
Vyplní křivku na obrazovce.
Křivka má výchozí napětí 0,5.
public:
void FillClosedCurvePointFillMode( PaintEventArgs^ e )
{
// Create solid brush.
SolidBrush^ redBrush = gcnew SolidBrush( Color::Red );
//Create array of points for curve.
Point point1 = Point(100,100);
Point point2 = Point(200,50);
Point point3 = Point(250,200);
Point point4 = Point(50,150);
array<Point>^ points = {point1,point2,point3,point4};
// Set fill mode.
FillMode newFillMode = FillMode::Winding;
// Fill curve on screen.
e->Graphics->FillClosedCurve( redBrush, points, newFillMode );
}
public void FillClosedCurvePointFillMode(PaintEventArgs e)
{
// Create solid brush.
SolidBrush redBrush = new SolidBrush(Color.Red);
//Create array of points for curve.
Point point1 = new Point(100, 100);
Point point2 = new Point(200, 50);
Point point3 = new Point(250, 200);
Point point4 = new Point(50, 150);
Point[] points = {point1, point2, point3, point4};
// Set fill mode.
FillMode newFillMode = FillMode.Winding;
// Fill curve on screen.
e.Graphics.FillClosedCurve(redBrush, points, newFillMode);
}
Public Sub FillClosedCurvePointFillMode(ByVal e As PaintEventArgs)
' Create solid brush.
Dim redBrush As New SolidBrush(Color.Red)
'Create array of points for curve.
Dim point1 As New Point(100, 100)
Dim point2 As New Point(200, 50)
Dim point3 As New Point(250, 200)
Dim point4 As New Point(50, 150)
Dim points As Point() = {point1, point2, point3, point4}
' Set fill mode.
Dim newFillMode As FillMode = FillMode.Winding
' Fill curve on screen.
e.Graphics.FillClosedCurve(redBrush, points, newFillMode)
End Sub
Poznámky
Tato metoda vyplní vnitřní část uzavřené kardinaly, která prochází každým bodem pole. Pokud poslední bod neodpovídá prvnímu bodu, přidá se další segment křivky od posledního bodu k prvnímu bodu, který ho zavře.
Matice bodů musí obsahovat alespoň čtyři Point struktury.
Tato metoda používá výchozí napětí 0,5.
Platí pro
FillClosedCurve(Brush, PointF[], FillMode)
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
Vyplní vnitřní část uzavřené kardinalní křivky definované polem PointF struktur pomocí zadaného režimu výplně.
public:
void FillClosedCurve(System::Drawing::Brush ^ brush, cli::array <System::Drawing::PointF> ^ points, System::Drawing::Drawing2D::FillMode fillmode);
public void FillClosedCurve (System.Drawing.Brush brush, System.Drawing.PointF[] points, System.Drawing.Drawing2D.FillMode fillmode);
member this.FillClosedCurve : System.Drawing.Brush * System.Drawing.PointF[] * System.Drawing.Drawing2D.FillMode -> unit
Public Sub FillClosedCurve (brush As Brush, points As PointF(), fillmode As FillMode)
Parametry
Výjimky
Příklady
Následující příklad kódu je určený pro použití s Windows Forms a vyžaduje PaintEventArgse
, což je parametr obslužné rutiny události Paint. Kód provede následující akce:
Vytvoří pevný červený štětec.
Vytvoří matici čtyř bodů pro definování křivky.
Nastaví režim výplně na Winding.
Vyplní křivku na obrazovce.
Křivka má výchozí napětí 0,5.
public:
void FillClosedCurvePointFFillMode( PaintEventArgs^ e )
{
// Create solid brush.
SolidBrush^ redBrush = gcnew SolidBrush( Color::Red );
// Create array of points for curve.
PointF point1 = PointF(100.0F,100.0F);
PointF point2 = PointF(200.0F,50.0F);
PointF point3 = PointF(250.0F,200.0F);
PointF point4 = PointF(50.0F,150.0F);
array<PointF>^ points = {point1,point2,point3,point4};
// Set fill mode.
FillMode newFillMode = FillMode::Winding;
// Fill curve on screen.
e->Graphics->FillClosedCurve( redBrush, points, newFillMode );
}
public void FillClosedCurvePointFFillMode(PaintEventArgs e)
{
// Create solid brush.
SolidBrush redBrush = new SolidBrush(Color.Red);
// Create array of points for curve.
PointF point1 = new PointF(100.0F, 100.0F);
PointF point2 = new PointF(200.0F, 50.0F);
PointF point3 = new PointF(250.0F, 200.0F);
PointF point4 = new PointF(50.0F, 150.0F);
PointF[] points = {point1, point2, point3, point4};
// Set fill mode.
FillMode newFillMode = FillMode.Winding;
// Fill curve on screen.
e.Graphics.FillClosedCurve(redBrush, points, newFillMode);
}
Public Sub FillClosedCurvePointFFillMode(ByVal e As PaintEventArgs)
' Create solid brush.
Dim redBrush As New SolidBrush(Color.Red)
' Create array of points for curve.
Dim point1 As New PointF(100.0F, 100.0F)
Dim point2 As New PointF(200.0F, 50.0F)
Dim point3 As New PointF(250.0F, 200.0F)
Dim point4 As New PointF(50.0F, 150.0F)
Dim points As PointF() = {point1, point2, point3, point4}
' Set fill mode.
Dim newFillMode As FillMode = FillMode.Winding
' Fill curve on screen.
e.Graphics.FillClosedCurve(redBrush, points, newFillMode)
End Sub
Poznámky
Tato metoda vyplní vnitřní část uzavřené kardinaly, která prochází každým bodem pole. Pokud poslední bod neodpovídá prvnímu bodu, přidá se další segment křivky od posledního bodu k prvnímu bodu, který ho zavře.
Matice bodů musí obsahovat alespoň čtyři Point struktury.
Tato metoda používá výchozí napětí 0,5.
Platí pro
FillClosedCurve(Brush, ReadOnlySpan<Point>, FillMode)
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
public:
void FillClosedCurve(System::Drawing::Brush ^ brush, ReadOnlySpan<System::Drawing::Point> points, System::Drawing::Drawing2D::FillMode fillmode);
public void FillClosedCurve (System.Drawing.Brush brush, ReadOnlySpan<System.Drawing.Point> points, System.Drawing.Drawing2D.FillMode fillmode);
member this.FillClosedCurve : System.Drawing.Brush * ReadOnlySpan<System.Drawing.Point> * System.Drawing.Drawing2D.FillMode -> unit
Public Sub FillClosedCurve (brush As Brush, points As ReadOnlySpan(Of Point), fillmode As FillMode)
Parametry
- brush
- Brush
- points
- ReadOnlySpan<Point>
- fillmode
- FillMode
Platí pro
FillClosedCurve(Brush, ReadOnlySpan<PointF>, FillMode)
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
public:
void FillClosedCurve(System::Drawing::Brush ^ brush, ReadOnlySpan<System::Drawing::PointF> points, System::Drawing::Drawing2D::FillMode fillmode);
public void FillClosedCurve (System.Drawing.Brush brush, ReadOnlySpan<System.Drawing.PointF> points, System.Drawing.Drawing2D.FillMode fillmode);
member this.FillClosedCurve : System.Drawing.Brush * ReadOnlySpan<System.Drawing.PointF> * System.Drawing.Drawing2D.FillMode -> unit
Public Sub FillClosedCurve (brush As Brush, points As ReadOnlySpan(Of PointF), fillmode As FillMode)
Parametry
- brush
- Brush
- points
- ReadOnlySpan<PointF>
- fillmode
- FillMode
Platí pro
FillClosedCurve(Brush, Point[], FillMode, Single)
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
Vyplní vnitřní část uzavřené kardinalní křivky definované polem Point struktur pomocí zadaného režimu výplně a napětí.
public:
void FillClosedCurve(System::Drawing::Brush ^ brush, cli::array <System::Drawing::Point> ^ points, System::Drawing::Drawing2D::FillMode fillmode, float tension);
public void FillClosedCurve (System.Drawing.Brush brush, System.Drawing.Point[] points, System.Drawing.Drawing2D.FillMode fillmode, float tension);
member this.FillClosedCurve : System.Drawing.Brush * System.Drawing.Point[] * System.Drawing.Drawing2D.FillMode * single -> unit
Public Sub FillClosedCurve (brush As Brush, points As Point(), fillmode As FillMode, tension As Single)
Parametry
- tension
- Single
Hodnota větší nebo rovna 0,0F, která určuje napětí křivky.
Výjimky
Příklady
Následující příklad kódu je určený pro použití s Windows Forms a vyžaduje PaintEventArgse
, což je parametr obslužné rutiny události Paint. Kód provede následující akce:
Vytvoří pevný červený štětec.
Vytvoří matici čtyř bodů pro definování křivky.
Nastaví režim výplně na Winding.
Nastaví napětí na 1,0.
Vyplní křivku na obrazovce.
public:
void FillClosedCurvePointFillModeTension( PaintEventArgs^ e )
{
// Create solid brush.
SolidBrush^ redBrush = gcnew SolidBrush( Color::Red );
// Create array of points for curve.
Point point1 = Point(100,100);
Point point2 = Point(200,50);
Point point3 = Point(250,200);
Point point4 = Point(50,150);
array<Point>^ points = {point1,point2,point3,point4};
// Set fill mode.
FillMode newFillMode = FillMode::Winding;
// Set tension.
float tension = 1.0F;
// Fill curve on screen.
e->Graphics->FillClosedCurve( redBrush, points, newFillMode, tension );
}
public void FillClosedCurvePointFillModeTension(PaintEventArgs e)
{
// Create solid brush.
SolidBrush redBrush = new SolidBrush(Color.Red);
// Create array of points for curve.
Point point1 = new Point(100, 100);
Point point2 = new Point(200, 50);
Point point3 = new Point(250, 200);
Point point4 = new Point(50, 150);
Point[] points = {point1, point2, point3, point4};
// Set fill mode.
FillMode newFillMode = FillMode.Winding;
// Set tension.
float tension = 1.0F;
// Fill curve on screen.
e.Graphics.FillClosedCurve(redBrush, points, newFillMode, tension);
}
Public Sub FillClosedCurvePointFillModeTension(ByVal e As PaintEventArgs)
' Create solid brush.
Dim redBrush As New SolidBrush(Color.Red)
' Create array of points for curve.
Dim point1 As New Point(100, 100)
Dim point2 As New Point(200, 50)
Dim point3 As New Point(250, 200)
Dim point4 As New Point(50, 150)
Dim points As Point() = {point1, point2, point3, point4}
' Set fill mode.
Dim newFillMode As FillMode = FillMode.Winding
' Set tension.
Dim tension As Single = 1.0F
' Fill curve on screen.
e.Graphics.FillClosedCurve(redBrush, points, newFillMode, tension)
End Sub
Poznámky
Tato metoda vyplní vnitřní část uzavřené kardinaly, která prochází každým bodem pole. Pokud poslední bod neodpovídá prvnímu bodu, přidá se další segment křivky od posledního bodu k prvnímu bodu, který ho zavře.
Matice bodů musí obsahovat alespoň čtyři Point struktury.
Parametr tension
určuje tvar křivky. Pokud je hodnota parametru tension
0,0F, tato metoda nakreslí přímky segmenty přímky pro spojení bodů. Obvykle je parametr tension
menší nebo roven hodnotě 1.0F. Hodnoty nad 1,0F vytvářejí neobvyklé výsledky.
Platí pro
FillClosedCurve(Brush, PointF[], FillMode, Single)
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
Vyplní vnitřní část uzavřené kardinalní křivky definované polem PointF struktur pomocí zadaného režimu výplně a napětí.
public:
void FillClosedCurve(System::Drawing::Brush ^ brush, cli::array <System::Drawing::PointF> ^ points, System::Drawing::Drawing2D::FillMode fillmode, float tension);
public void FillClosedCurve (System.Drawing.Brush brush, System.Drawing.PointF[] points, System.Drawing.Drawing2D.FillMode fillmode, float tension);
member this.FillClosedCurve : System.Drawing.Brush * System.Drawing.PointF[] * System.Drawing.Drawing2D.FillMode * single -> unit
Public Sub FillClosedCurve (brush As Brush, points As PointF(), fillmode As FillMode, tension As Single)
Parametry
- tension
- Single
Hodnota větší nebo rovna 0,0F, která určuje napětí křivky.
Výjimky
Příklady
Následující příklad kódu je určený pro použití s Windows Forms a vyžaduje PaintEventArgse
, což je parametr obslužné rutiny události Paint. Kód provede následující akce:
Vytvoří pevný červený štětec.
Vytvoří matici čtyř bodů pro definování křivky.
Nastaví režim výplně na Winding.
Nastaví napětí na 1,0.
Vyplní křivku na obrazovce.
public:
void FillClosedCurvePointFFillModeTension( PaintEventArgs^ e )
{
// Create solid brush.
SolidBrush^ redBrush = gcnew SolidBrush( Color::Red );
// Create array of points for curve.
PointF point1 = PointF(100.0F,100.0F);
PointF point2 = PointF(200.0F,50.0F);
PointF point3 = PointF(250.0F,200.0F);
PointF point4 = PointF(50.0F,150.0F);
array<PointF>^ points = {point1,point2,point3,point4};
// Set fill mode.
FillMode newFillMode = FillMode::Winding;
// Set tension.
float tension = 1.0F;
// Fill curve on screen.
e->Graphics->FillClosedCurve( redBrush, points, newFillMode, tension );
}
public void FillClosedCurvePointFFillModeTension(PaintEventArgs e)
{
// Create solid brush.
SolidBrush redBrush = new SolidBrush(Color.Red);
// Create array of points for curve.
PointF point1 = new PointF(100.0F, 100.0F);
PointF point2 = new PointF(200.0F, 50.0F);
PointF point3 = new PointF(250.0F, 200.0F);
PointF point4 = new PointF(50.0F, 150.0F);
PointF[] points = {point1, point2, point3, point4};
// Set fill mode.
FillMode newFillMode = FillMode.Winding;
// Set tension.
float tension = 1.0F;
// Fill curve on screen.
e.Graphics.FillClosedCurve(redBrush, points, newFillMode, tension);
}
Public Sub FillClosedCurvePointFFillModeTension(ByVal e As PaintEventArgs)
' Create solid brush.
Dim redBrush As New SolidBrush(Color.Red)
' Create array of points for curve.
Dim point1 As New PointF(100.0F, 100.0F)
Dim point2 As New PointF(200.0F, 50.0F)
Dim point3 As New PointF(250.0F, 200.0F)
Dim point4 As New PointF(50.0F, 150.0F)
Dim points As PointF() = {point1, point2, point3, point4}
' Set fill mode.
Dim newFillMode As FillMode = FillMode.Winding
' Set tension.
Dim tension As Single = 1.0F
' Fill curve on screen.
e.Graphics.FillClosedCurve(redBrush, points, newFillMode, tension)
End Sub
Poznámky
Tato metoda vyplní vnitřní část uzavřené kardinaly, která prochází každým bodem pole. Pokud poslední bod neodpovídá prvnímu bodu, přidá se další segment křivky od posledního bodu k prvnímu bodu, který ho zavře.
Matice bodů musí obsahovat alespoň čtyři Point struktury.
Parametr tension
určuje tvar křivky. Pokud je hodnota parametru tension
0,0F, tato metoda nakreslí přímky segmenty přímky pro spojení bodů. Obvykle je parametr tension
menší nebo roven hodnotě 1.0F. Hodnoty nad 1,0F vytvářejí neobvyklé výsledky.
Platí pro
FillClosedCurve(Brush, ReadOnlySpan<Point>, FillMode, Single)
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
public:
void FillClosedCurve(System::Drawing::Brush ^ brush, ReadOnlySpan<System::Drawing::Point> points, System::Drawing::Drawing2D::FillMode fillmode, float tension);
public void FillClosedCurve (System.Drawing.Brush brush, ReadOnlySpan<System.Drawing.Point> points, System.Drawing.Drawing2D.FillMode fillmode, float tension);
member this.FillClosedCurve : System.Drawing.Brush * ReadOnlySpan<System.Drawing.Point> * System.Drawing.Drawing2D.FillMode * single -> unit
Public Sub FillClosedCurve (brush As Brush, points As ReadOnlySpan(Of Point), fillmode As FillMode, tension As Single)
Parametry
- brush
- Brush
- points
- ReadOnlySpan<Point>
- fillmode
- FillMode
- tension
- Single
Platí pro
FillClosedCurve(Brush, ReadOnlySpan<PointF>, FillMode, Single)
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
public:
void FillClosedCurve(System::Drawing::Brush ^ brush, ReadOnlySpan<System::Drawing::PointF> points, System::Drawing::Drawing2D::FillMode fillmode, float tension);
public void FillClosedCurve (System.Drawing.Brush brush, ReadOnlySpan<System.Drawing.PointF> points, System.Drawing.Drawing2D.FillMode fillmode, float tension);
member this.FillClosedCurve : System.Drawing.Brush * ReadOnlySpan<System.Drawing.PointF> * System.Drawing.Drawing2D.FillMode * single -> unit
Public Sub FillClosedCurve (brush As Brush, points As ReadOnlySpan(Of PointF), fillmode As FillMode, tension As Single)
Parametry
- brush
- Brush
- points
- ReadOnlySpan<PointF>
- fillmode
- FillMode
- tension
- Single