Graphics.DrawEllipse Metoda

Definicja

Rysuje wielokropek zdefiniowany przez prostokąt ograniczenia określony przez parę współrzędnych, wysokość i szerokość.

Przeciążenia

DrawEllipse(Pen, Int32, Int32, Int32, Int32)

Rysuje wielokropek zdefiniowany przez prostokąt ograniczenia określony przez współrzędne lewego górnego rogu prostokąta, wysokość i szerokość.

DrawEllipse(Pen, Single, Single, Single, Single)

Rysuje wielokropek zdefiniowany przez prostokąt ograniczenia określony przez parę współrzędnych, wysokość i szerokość.

DrawEllipse(Pen, RectangleF)

Rysuje wielokropek zdefiniowany przez ograniczenie RectangleF.

DrawEllipse(Pen, Rectangle)

Rysuje wielokropek określony przez strukturę ograniczenia Rectangle .

DrawEllipse(Pen, Int32, Int32, Int32, Int32)

Źródło:
Graphics.cs
Źródło:
Graphics.cs
Źródło:
Graphics.cs

Rysuje wielokropek zdefiniowany przez prostokąt ograniczenia określony przez współrzędne lewego górnego rogu prostokąta, wysokość i szerokość.

public:
 void DrawEllipse(System::Drawing::Pen ^ pen, int x, int y, int width, int height);
public void DrawEllipse (System.Drawing.Pen pen, int x, int y, int width, int height);
member this.DrawEllipse : System.Drawing.Pen * int * int * int * int -> unit
Public Sub DrawEllipse (pen As Pen, x As Integer, y As Integer, width As Integer, height As Integer)

Parametry

pen
Pen

Pen określa kolor, szerokość i styl wielokropka.

x
Int32

Współrzędna x lewego górnego rogu prostokąta ograniczenia definiującego wielokropek.

y
Int32

Współrzędna y lewego górnego rogu prostokąta ograniczenia definiującego wielokropek.

width
Int32

Szerokość prostokąta ograniczenia definiującego wielokropek.

height
Int32

Wysokość prostokąta ograniczenia definiującego wielokropek.

Wyjątki

pen to null.

Przykłady

Poniższy przykład kodu jest przeznaczony do użycia z Windows Forms i wymaga PaintEventArgseparametru Paint programu obsługi zdarzeń. Kod wykonuje następujące akcje:

  • Tworzy czarny długopis.

  • Tworzy położenie i rozmiar prostokąta, aby powiązać wielokropek.

  • Rysuje wielokropek na ekran.

private:
   void DrawEllipseInt( PaintEventArgs^ e )
   {
      // Create pen.
      Pen^ blackPen = gcnew Pen( Color::Black,3.0f );

      // Create location and size of ellipse.
      int x = 0;
      int y = 0;
      int width = 200;
      int height = 100;

      // Draw ellipse to screen.
      e->Graphics->DrawEllipse( blackPen, x, y, width, height );
   }
private void DrawEllipseInt(PaintEventArgs e)
{
    // Create pen.
    Pen blackPen = new Pen(Color.Black, 3);
             
    // Create location and size of ellipse.
    int x = 0;
    int y = 0;
    int width = 200;
    int height = 100;
             
    // Draw ellipse to screen.
    e.Graphics.DrawEllipse(blackPen, x, y, width, height);
}
Private Sub DrawEllipseInt(ByVal e As PaintEventArgs)

    ' Create pen.
    Dim blackPen As New Pen(Color.Black, 3)

    ' Create location and size of ellipse.
    Dim x As Integer = 0
    Dim y As Integer = 0
    Dim width As Integer = 200
    Dim height As Integer = 100

    ' Draw ellipse to screen.
    e.Graphics.DrawEllipse(blackPen, x, y, width, height)
End Sub

Uwagi

Ta metoda rysuje wielokropek zdefiniowany przez prostokąt ograniczenia opisany przez xparametry , , ywidthi height .

Dotyczy

DrawEllipse(Pen, Single, Single, Single, Single)

Źródło:
Graphics.cs
Źródło:
Graphics.cs
Źródło:
Graphics.cs

Rysuje wielokropek zdefiniowany przez prostokąt ograniczenia określony przez parę współrzędnych, wysokość i szerokość.

public:
 void DrawEllipse(System::Drawing::Pen ^ pen, float x, float y, float width, float height);
public void DrawEllipse (System.Drawing.Pen pen, float x, float y, float width, float height);
member this.DrawEllipse : System.Drawing.Pen * single * single * single * single -> unit
Public Sub DrawEllipse (pen As Pen, x As Single, y As Single, width As Single, height As Single)

Parametry

pen
Pen

Pen określa kolor, szerokość i styl wielokropka.

x
Single

Współrzędna x lewego górnego rogu prostokąta ograniczenia definiującego wielokropek.

y
Single

Współrzędna y lewego górnego rogu prostokąta ograniczenia definiującego wielokropek.

width
Single

Szerokość prostokąta ograniczenia definiującego wielokropek.

height
Single

Wysokość prostokąta ograniczenia definiującego wielokropek.

Wyjątki

pen to null.

Przykłady

Poniższy przykład kodu jest przeznaczony do użycia z Windows Forms i wymaga PaintEventArgseparametru Paint programu obsługi zdarzeń. Kod wykonuje następujące akcje:

  • Tworzy czarny długopis.

  • Tworzy położenie i rozmiar prostokąta, aby powiązać wielokropek.

  • Rysuje wielokropek na ekran.

private:
   void DrawEllipseFloat( PaintEventArgs^ e )
   {
      // Create pen.
      Pen^ blackPen = gcnew Pen( Color::Black,3.0f );

      // Create location and size of ellipse.
      float x = 0.0F;
      float y = 0.0F;
      float width = 200.0F;
      float height = 100.0F;

      // Draw ellipse to screen.
      e->Graphics->DrawEllipse( blackPen, x, y, width, height );
   }
private void DrawEllipseFloat(PaintEventArgs e)
{         
    // Create pen.
    Pen blackPen = new Pen(Color.Black, 3);
             
    // Create location and size of ellipse.
    float x = 0.0F;
    float y = 0.0F;
    float width = 200.0F;
    float height = 100.0F;
             
    // Draw ellipse to screen.
    e.Graphics.DrawEllipse(blackPen, x, y, width, height);
}
Private Sub DrawEllipseFloat(ByVal e As PaintEventArgs)

    ' Create pen.
    Dim blackPen As New Pen(Color.Black, 3)

    ' Create location and size of ellipse.
    Dim x As Single = 0.0F
    Dim y As Single = 0.0F
    Dim width As Single = 200.0F
    Dim height As Single = 100.0F

    ' Draw ellipse to screen.
    e.Graphics.DrawEllipse(blackPen, x, y, width, height)
End Sub

Uwagi

Ta metoda rysuje wielokropek zdefiniowany przez prostokąt ograniczenia opisany przez xparametry , , ywidthi height .

Dotyczy

DrawEllipse(Pen, RectangleF)

Źródło:
Graphics.cs
Źródło:
Graphics.cs
Źródło:
Graphics.cs

Rysuje wielokropek zdefiniowany przez ograniczenie RectangleF.

public:
 void DrawEllipse(System::Drawing::Pen ^ pen, System::Drawing::RectangleF rect);
public void DrawEllipse (System.Drawing.Pen pen, System.Drawing.RectangleF rect);
member this.DrawEllipse : System.Drawing.Pen * System.Drawing.RectangleF -> unit
Public Sub DrawEllipse (pen As Pen, rect As RectangleF)

Parametry

pen
Pen

Pen określa kolor, szerokość i styl wielokropka.

rect
RectangleF

RectangleF struktura definiująca granice wielokropka.

Wyjątki

pen to null.

Przykłady

Poniższy przykład kodu jest przeznaczony do użycia z Windows Forms i wymaga PaintEventArgseparametru Paint programu obsługi zdarzeń. Kod wykonuje następujące akcje:

  • Tworzy czarny długopis.

  • Tworzy prostokąt, aby powiązać wielokropek.

  • Rysuje wielokropek na ekran.

private:
   void DrawEllipseRectangleF( PaintEventArgs^ e )
   {
      // Create pen.
      Pen^ blackPen = gcnew Pen( Color::Black,3.0f );

      // Create rectangle for ellipse.
      RectangleF rect = RectangleF(0.0F,0.0F,200.0F,100.0F);

      // Draw ellipse to screen.
      e->Graphics->DrawEllipse( blackPen, rect );
   }
private void DrawEllipseRectangleF(PaintEventArgs e)
{
    // Create pen.
    Pen blackPen = new Pen(Color.Black, 3);
             
    // Create rectangle for ellipse.
    RectangleF rect = new RectangleF(0.0F, 0.0F, 200.0F, 100.0F);
             
    // Draw ellipse to screen.
    e.Graphics.DrawEllipse(blackPen, rect);
}
Private Sub DrawEllipseRectangleF(ByVal e As PaintEventArgs)

    ' Create pen.
    Dim blackPen As New Pen(Color.Black, 3)

    ' Create rectangle for ellipse.
    Dim rect As New RectangleF(0.0F, 0.0F, 200.0F, 100.0F)

    ' Draw ellipse to screen.
    e.Graphics.DrawEllipse(blackPen, rect)
End Sub

Uwagi

Ta metoda rysuje wielokropek zdefiniowany przez prostokąt ograniczenia określony przez rect parametr .

Dotyczy

DrawEllipse(Pen, Rectangle)

Źródło:
Graphics.cs
Źródło:
Graphics.cs
Źródło:
Graphics.cs

Rysuje wielokropek określony przez strukturę ograniczenia Rectangle .

public:
 void DrawEllipse(System::Drawing::Pen ^ pen, System::Drawing::Rectangle rect);
public void DrawEllipse (System.Drawing.Pen pen, System.Drawing.Rectangle rect);
member this.DrawEllipse : System.Drawing.Pen * System.Drawing.Rectangle -> unit
Public Sub DrawEllipse (pen As Pen, rect As Rectangle)

Parametry

pen
Pen

Pen określa kolor, szerokość i styl wielokropka.

rect
Rectangle

Rectangle struktura definiująca granice wielokropka.

Wyjątki

pen to null.

Przykłady

Poniższy przykład kodu jest przeznaczony do użycia z Windows Forms i wymaga PaintEventArgseparametru Paint programu obsługi zdarzeń. Kod wykonuje następujące akcje:

  • Tworzy czarny długopis.

  • Tworzy prostokąt, aby powiązać wielokropek.

  • Rysuje wielokropek na ekran.

private:
   void DrawEllipseRectangle( PaintEventArgs^ e )
   {
      // Create pen.
      Pen^ blackPen = gcnew Pen( Color::Black,3.0f );

      // Create rectangle for ellipse.
      Rectangle rect = Rectangle(0,0,200,100);

      // Draw ellipse to screen.
      e->Graphics->DrawEllipse( blackPen, rect );
   }
private void DrawEllipseRectangle(PaintEventArgs e)
{
    // Create pen.
    Pen blackPen = new Pen(Color.Black, 3);
             
    // Create rectangle for ellipse.
    Rectangle rect = new Rectangle(0, 0, 200, 100);
             
    // Draw ellipse to screen.
    e.Graphics.DrawEllipse(blackPen, rect);
}
Private Sub DrawEllipseRectangle(ByVal e As PaintEventArgs)

    ' Create pen.
    Dim blackPen As New Pen(Color.Black, 3)

    ' Create rectangle for ellipse.
    Dim rect As New Rectangle(0, 0, 200, 100)

    ' Draw ellipse to screen.
    e.Graphics.DrawEllipse(blackPen, rect)
End Sub

Uwagi

Ta metoda rysuje wielokropek zdefiniowany przez prostokąt ograniczenia określony przez rect parametr .

Dotyczy