GraphicsPath.AddEllipse 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將省略號新增至目前的路徑。
多載
AddEllipse(Rectangle) |
將省略號新增至目前的路徑。 |
AddEllipse(RectangleF) |
將省略號新增至目前的路徑。 |
AddEllipse(Int32, Int32, Int32, Int32) |
將省略號新增至目前的路徑。 |
AddEllipse(Single, Single, Single, Single) |
將省略號新增至目前的路徑。 |
AddEllipse(Rectangle)
將省略號新增至目前的路徑。
public:
void AddEllipse(System::Drawing::Rectangle rect);
public void AddEllipse (System.Drawing.Rectangle rect);
member this.AddEllipse : System.Drawing.Rectangle -> unit
Public Sub AddEllipse (rect As Rectangle)
參數
範例
下列程式代碼範例的設計目的是要與 Windows Forms 搭配使用,而且需要 PaintEventArgse
OnPaint 事件物件。 程式代碼會執行下列動作:
建立定義橢圓形的周框。
建立路徑,並將省略號新增至路徑。
繪製畫面的路徑。
private:
void AddEllipseExample( PaintEventArgs^ e )
{
// Create a path and add an ellipse.
Rectangle myEllipse = Rectangle(20,20,100,50);
GraphicsPath^ myPath = gcnew GraphicsPath;
myPath->AddEllipse( myEllipse );
// Draw the path to the screen.
Pen^ myPen = gcnew Pen( Color::Black,2.0f );
e->Graphics->DrawPath( myPen, myPath );
}
private void AddEllipseExample(PaintEventArgs e)
{
// Create a path and add an ellipse.
Rectangle myEllipse = new Rectangle(20, 20, 100, 50);
GraphicsPath myPath = new GraphicsPath();
myPath.AddEllipse(myEllipse);
// Draw the path to the screen.
Pen myPen = new Pen(Color.Black, 2);
e.Graphics.DrawPath(myPen, myPath);
}
Public Sub AddEllipseExample(ByVal e As PaintEventArgs)
' Create a path and add an ellipse.
Dim myEllipse As New Rectangle(20, 20, 100, 50)
Dim myPath As New GraphicsPath
myPath.AddEllipse(myEllipse)
' Draw the path to the screen.
Dim myPen As New Pen(Color.Black, 2)
e.Graphics.DrawPath(myPen, myPath)
End Sub
適用於
AddEllipse(RectangleF)
將省略號新增至目前的路徑。
public:
void AddEllipse(System::Drawing::RectangleF rect);
public void AddEllipse (System.Drawing.RectangleF rect);
member this.AddEllipse : System.Drawing.RectangleF -> unit
Public Sub AddEllipse (rect As RectangleF)
參數
- rect
- RectangleF
RectangleF,表示定義橢圓形的周框。
範例
如需範例,請參閱 AddEllipse(Rectangle)。
適用於
AddEllipse(Int32, Int32, Int32, Int32)
將省略號新增至目前的路徑。
public:
void AddEllipse(int x, int y, int width, int height);
public void AddEllipse (int x, int y, int width, int height);
member this.AddEllipse : int * int * int * int -> unit
Public Sub AddEllipse (x As Integer, y As Integer, width As Integer, height As Integer)
參數
- x
- Int32
定義橢圓形之周框左上角的 X 座標。
- y
- Int32
定義橢圓形之周框左上角的 Y 座標。
- width
- Int32
定義橢圓形的周框寬度。
- height
- Int32
定義橢圓形的周框高度。
範例
如需範例,請參閱 AddEllipse(Rectangle)。
適用於
AddEllipse(Single, Single, Single, Single)
將省略號新增至目前的路徑。
public:
void AddEllipse(float x, float y, float width, float height);
public void AddEllipse (float x, float y, float width, float height);
member this.AddEllipse : single * single * single * single -> unit
Public Sub AddEllipse (x As Single, y As Single, width As Single, height As Single)
參數
- x
- Single
定義橢圓形之周框左上角的 X 座標。
- y
- Single
定義橢圓形之周框左上角的 Y 座標。
- width
- Single
定義橢圓形的周框寬度。
- height
- Single
定義橢圓形的周框高度。
範例
如需範例,請參閱 AddEllipse(Rectangle)。