Graphics.DrawArc 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.
Rysuje łuk reprezentujący część wielokropka określonego przez parę współrzędnych, szerokość i wysokość.
Przeciążenia
DrawArc(Pen, Rectangle, Single, Single) |
Rysuje łuk reprezentujący część wielokropka określonego przez strukturę Rectangle. |
DrawArc(Pen, RectangleF, Single, Single) |
Rysuje łuk reprezentujący część wielokropka określonego przez strukturę RectangleF. |
DrawArc(Pen, Int32, Int32, Int32, Int32, Int32, Int32) |
Rysuje łuk reprezentujący część wielokropka określonego przez parę współrzędnych, szerokość i wysokość. |
DrawArc(Pen, Single, Single, Single, Single, Single, Single) |
Rysuje łuk reprezentujący część wielokropka określonego przez parę współrzędnych, szerokość i wysokość. |
DrawArc(Pen, Rectangle, Single, Single)
- Źródło:
- Graphics.cs
- Źródło:
- Graphics.cs
- Źródło:
- Graphics.cs
- Źródło:
- Graphics.cs
- Źródło:
- Graphics.cs
Rysuje łuk reprezentujący część wielokropka określonego przez strukturę Rectangle.
public:
void DrawArc(System::Drawing::Pen ^ pen, System::Drawing::Rectangle rect, float startAngle, float sweepAngle);
public void DrawArc (System.Drawing.Pen pen, System.Drawing.Rectangle rect, float startAngle, float sweepAngle);
member this.DrawArc : System.Drawing.Pen * System.Drawing.Rectangle * single * single -> unit
Public Sub DrawArc (pen As Pen, rect As Rectangle, startAngle As Single, sweepAngle As Single)
Parametry
- rect
- Rectangle
RectangleF struktura, która definiuje granice wielokropka.
- startAngle
- Single
Kąt w stopniach mierzony zgodnie z ruchem wskazówek zegara z osi x do punktu początkowego łuku.
- sweepAngle
- Single
Kąt w stopniach mierzony zgodnie z ruchem wskazówek zegara z parametru startAngle
do punktu końcowego łuku.
Wyjątki
pen
jest null
.
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 długopis.
Tworzy prostokąt, aby powiązać wielokropek.
Definiuje kąty rozpoczęcia (45 stopni) i zamiatania (270 stopni).
Rysuje wielokropek do ekranu.
Wynik jest częściowym wielokropkiem brakuje segmentu między + i - 45 stopni osi x.
private:
void DrawArcRectangle( PaintEventArgs^ e )
{
// Create pen.
Pen^ blackPen = gcnew Pen( Color::Black,3.0f );
// Create rectangle to bound ellipse.
Rectangle rect = Rectangle(0,0,100,200);
// Create start and sweep angles on ellipse.
float startAngle = 45.0F;
float sweepAngle = 270.0F;
// Draw arc to screen.
e->Graphics->DrawArc( blackPen, rect, startAngle, sweepAngle );
}
private void DrawArcRectangle(PaintEventArgs e)
{
// Create pen.
Pen blackPen= new Pen(Color.Black, 3);
// Create rectangle to bound ellipse.
Rectangle rect = new Rectangle(0, 0, 100, 200);
// Create start and sweep angles on ellipse.
float startAngle = 45.0F;
float sweepAngle = 270.0F;
// Draw arc to screen.
e.Graphics.DrawArc(blackPen, rect, startAngle, sweepAngle);
}
Private Sub DrawArcRectangle(ByVal e As PaintEventArgs)
' Create pen.
Dim blackPen As New Pen(Color.Black, 3)
' Create rectangle to bound ellipse.
Dim rect As New Rectangle(0, 0, 100, 200)
' Create start and sweep angles on ellipse.
Dim startAngle As Single = 45.0F
Dim sweepAngle As Single = 270.0F
' Draw arc to screen.
e.Graphics.DrawArc(blackPen, rect, startAngle, sweepAngle)
End Sub
Uwagi
Ta metoda rysuje łuk, który jest częścią obwodu wielokropka. Wielokropek jest definiowany przez granice prostokąta. Łuk jest częścią obwodu wielokropka między parametrem startAngle
a parametrami startAngle
+ sweepAngle
.
Dotyczy
DrawArc(Pen, RectangleF, Single, Single)
- Źródło:
- Graphics.cs
- Źródło:
- Graphics.cs
- Źródło:
- Graphics.cs
- Źródło:
- Graphics.cs
- Źródło:
- Graphics.cs
Rysuje łuk reprezentujący część wielokropka określonego przez strukturę RectangleF.
public:
void DrawArc(System::Drawing::Pen ^ pen, System::Drawing::RectangleF rect, float startAngle, float sweepAngle);
public void DrawArc (System.Drawing.Pen pen, System.Drawing.RectangleF rect, float startAngle, float sweepAngle);
member this.DrawArc : System.Drawing.Pen * System.Drawing.RectangleF * single * single -> unit
Public Sub DrawArc (pen As Pen, rect As RectangleF, startAngle As Single, sweepAngle As Single)
Parametry
- rect
- RectangleF
RectangleF struktura, która definiuje granice wielokropka.
- startAngle
- Single
Kąt w stopniach mierzony zgodnie z ruchem wskazówek zegara z osi x do punktu początkowego łuku.
- sweepAngle
- Single
Kąt w stopniach mierzony zgodnie z ruchem wskazówek zegara z parametru startAngle
do punktu końcowego łuku.
Wyjątki
pen
jest null
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 długopis.
Tworzy prostokąt, aby powiązać wielokropek.
Definiuje kąty rozpoczęcia (45 stopni) i zamiatania (270 stopni).
Rysuje wielokropek do ekranu.
Wynik jest częściowym wielokropkiem brakuje segmentu między + i - 45 stopni osi x.
private:
void DrawArcRectangleF( PaintEventArgs^ e )
{
// Create pen.
Pen^ blackPen = gcnew Pen( Color::Black,3.0f );
// Create rectangle to bound ellipse.
RectangleF rect = RectangleF(0.0F,0.0F,100.0F,200.0F);
// Create start and sweep angles on ellipse.
float startAngle = 45.0F;
float sweepAngle = 270.0F;
// Draw arc to screen.
e->Graphics->DrawArc( blackPen, rect, startAngle, sweepAngle );
}
private void DrawArcRectangleF(PaintEventArgs e)
{
// Create pen.
Pen blackPen= new Pen(Color.Black, 3);
// Create rectangle to bound ellipse.
RectangleF rect = new RectangleF(0.0F, 0.0F, 100.0F, 200.0F);
// Create start and sweep angles on ellipse.
float startAngle = 45.0F;
float sweepAngle = 270.0F;
// Draw arc to screen.
e.Graphics.DrawArc(blackPen, rect, startAngle, sweepAngle);
}
Private Sub DrawArcRectangleF(ByVal e As PaintEventArgs)
' Create pen.
Dim blackPen As New Pen(Color.Black, 3)
' Create rectangle to bound ellipse.
Dim rect As New RectangleF(0.0F, 0.0F, 100.0F, 200.0F)
' Create start and sweep angles on ellipse.
Dim startAngle As Single = 45.0F
Dim sweepAngle As Single = 270.0F
' Draw arc to screen.
e.Graphics.DrawArc(blackPen, rect, startAngle, sweepAngle)
End Sub
Uwagi
Ta metoda rysuje łuk, który jest częścią obwodu wielokropka. Wielokropek jest definiowany przez granice prostokąta. Łuk jest częścią obwodu wielokropka między parametrem startAngle
a parametrami startAngle
+ sweepAngle
.
Dotyczy
DrawArc(Pen, Int32, Int32, Int32, Int32, Int32, Int32)
- Źródło:
- Graphics.cs
- Źródło:
- Graphics.cs
- Źródło:
- Graphics.cs
- Źródło:
- Graphics.cs
- Źródło:
- Graphics.cs
Rysuje łuk reprezentujący część wielokropka określonego przez parę współrzędnych, szerokość i wysokość.
public:
void DrawArc(System::Drawing::Pen ^ pen, int x, int y, int width, int height, int startAngle, int sweepAngle);
public void DrawArc (System.Drawing.Pen pen, int x, int y, int width, int height, int startAngle, int sweepAngle);
member this.DrawArc : System.Drawing.Pen * int * int * int * int * int * int -> unit
Public Sub DrawArc (pen As Pen, x As Integer, y As Integer, width As Integer, height As Integer, startAngle As Integer, sweepAngle As Integer)
Parametry
- x
- Int32
Współrzędna x lewego górnego rogu prostokąta definiującego wielokropek.
- y
- Int32
Współrzędna y lewego górnego rogu prostokąta definiującego wielokropek.
- width
- Int32
Szerokość prostokąta definiującego wielokropek.
- height
- Int32
Wysokość prostokąta definiującego wielokropek.
- startAngle
- Int32
Kąt w stopniach mierzony zgodnie z ruchem wskazówek zegara z osi x do punktu początkowego łuku.
- sweepAngle
- Int32
Kąt w stopniach mierzony zgodnie z ruchem wskazówek zegara z parametru startAngle
do punktu końcowego łuku.
Wyjątki
pen
jest null
.
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 długopis.
Tworzy położenie i rozmiar prostokąta, aby powiązać wielokropek.
Definiuje kąty rozpoczęcia (45 stopni) i zamiatania (270 stopni).
Rysuje wielokropek do ekranu.
Wynik jest częściowym wielokropkiem brakuje segmentu między + i - 45 stopni osi x.
private:
void DrawArcInt( PaintEventArgs^ e )
{
// Create pen.
Pen^ blackPen = gcnew Pen( Color::Black,3.0f );
// Create coordinates of rectangle to bound ellipse.
int x = 0;
int y = 0;
int width = 100;
int height = 200;
// Create start and sweep angles on ellipse.
int startAngle = 45;
int sweepAngle = 270;
// Draw arc to screen.
e->Graphics->DrawArc( blackPen, x, y, width, height, startAngle, sweepAngle );
}
private void DrawArcInt(PaintEventArgs e)
{
// Create pen.
Pen blackPen= new Pen(Color.Black, 3);
// Create coordinates of rectangle to bound ellipse.
int x = 0;
int y = 0;
int width = 100;
int height = 200;
// Create start and sweep angles on ellipse.
int startAngle = 45;
int sweepAngle = 270;
// Draw arc to screen.
e.Graphics.DrawArc(blackPen, x, y, width, height, startAngle, sweepAngle);
}
Private Sub DrawArcInt(ByVal e As PaintEventArgs)
' Create pen.
Dim blackPen As New Pen(Color.Black, 3)
' Create coordinates of rectangle to bound ellipse.
Dim x As Integer = 0
Dim y As Integer = 0
Dim width As Integer = 100
Dim height As Integer = 200
' Create start and sweep angles on ellipse.
Dim startAngle As Integer = 45
Dim sweepAngle As Integer = 270
' Draw arc to screen.
e.Graphics.DrawArc(blackPen, x, y, width, height, startAngle, _
sweepAngle)
End Sub
Uwagi
Ta metoda rysuje łuk, który jest częścią obwodu wielokropka. Wielokropek jest definiowany przez granice prostokąta. Łuk jest częścią obwodu wielokropka między parametrem startAngle
a parametrami startAngle
+ sweepAngle
.
Dotyczy
DrawArc(Pen, Single, Single, Single, Single, Single, Single)
- Źródło:
- Graphics.cs
- Źródło:
- Graphics.cs
- Źródło:
- Graphics.cs
- Źródło:
- Graphics.cs
- Źródło:
- Graphics.cs
Rysuje łuk reprezentujący część wielokropka określonego przez parę współrzędnych, szerokość i wysokość.
public:
void DrawArc(System::Drawing::Pen ^ pen, float x, float y, float width, float height, float startAngle, float sweepAngle);
public void DrawArc (System.Drawing.Pen pen, float x, float y, float width, float height, float startAngle, float sweepAngle);
member this.DrawArc : System.Drawing.Pen * single * single * single * single * single * single -> unit
Public Sub DrawArc (pen As Pen, x As Single, y As Single, width As Single, height As Single, startAngle As Single, sweepAngle As Single)
Parametry
- x
- Single
Współrzędna x lewego górnego rogu prostokąta definiującego wielokropek.
- y
- Single
Współrzędna y lewego górnego rogu prostokąta definiującego wielokropek.
- width
- Single
Szerokość prostokąta definiującego wielokropek.
- height
- Single
Wysokość prostokąta definiującego wielokropek.
- startAngle
- Single
Kąt w stopniach mierzony zgodnie z ruchem wskazówek zegara z osi x do punktu początkowego łuku.
- sweepAngle
- Single
Kąt w stopniach mierzony zgodnie z ruchem wskazówek zegara z parametru startAngle
do punktu końcowego łuku.
Wyjątki
pen
jest null
.
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 długopis.
Tworzy położenie i rozmiar prostokąta, aby powiązać wielokropek.
Definiuje kąty rozpoczęcia (45 stopni) i zamiatania (270 stopni).
Rysuje wielokropek do ekranu.
Wynik jest częściowym wielokropkiem brakuje segmentu między + i - 45 stopni osi x.
private:
void DrawArcFloat( PaintEventArgs^ e )
{
// Create pen.
Pen^ blackPen = gcnew Pen( Color::Black,3.0f );
// Create coordinates of rectangle to bound ellipse.
float x = 0.0F;
float y = 0.0F;
float width = 100.0F;
float height = 200.0F;
// Create start and sweep angles on ellipse.
float startAngle = 45.0F;
float sweepAngle = 270.0F;
// Draw arc to screen.
e->Graphics->DrawArc( blackPen, x, y, width, height, startAngle, sweepAngle );
}
private void DrawArcFloat(PaintEventArgs e)
{
// Create pen.
Pen blackPen= new Pen(Color.Black, 3);
// Create coordinates of rectangle to bound ellipse.
float x = 0.0F;
float y = 0.0F;
float width = 100.0F;
float height = 200.0F;
// Create start and sweep angles on ellipse.
float startAngle = 45.0F;
float sweepAngle = 270.0F;
// Draw arc to screen.
e.Graphics.DrawArc(blackPen, x, y, width, height, startAngle, sweepAngle);
}
Private Sub DrawArcFloat(ByVal e As PaintEventArgs)
' Create pen.
Dim blackPen As New Pen(Color.Black, 3)
' Create coordinates of rectangle to bound ellipse.
Dim x As Single = 0.0F
Dim y As Single = 0.0F
Dim width As Single = 100.0F
Dim height As Single = 200.0F
' Create start and sweep angles on ellipse.
Dim startAngle As Single = 45.0F
Dim sweepAngle As Single = 270.0F
' Draw arc to screen.
e.Graphics.DrawArc(blackPen, x, y, width, height, startAngle, _
sweepAngle)
End Sub
Uwagi
Ta metoda rysuje łuk, który jest częścią obwodu wielokropka. Wielokropek jest definiowany przez granice prostokąta. Łuk jest częścią obwodu wielokropka między parametrem startAngle
a parametrami startAngle
+ sweepAngle
.