Graphics.DrawEllipse
DrawEllipse(Pen, RectangleF)
境界によって定義された楕円を描画しますRectangleF
.
public void DrawEllipse(Pen pen, RectangleF rect)
パラメータ | タイプ | 説明 |
---|
pen | Pen | Pen 楕円の色、幅、スタイルを決定します。 |
rect | RectangleF | RectangleF 楕円の境界を定義する構造。 |
例外
例外 | 調子 |
---|
ArgumentNullException | pen無効である。 |
関連項目
DrawEllipse(Pen, float, float, float, float)
座標、高さ、幅のペアで指定された外接する四角形で定義される楕円を描画します。
public void DrawEllipse(Pen pen, float x, float y, float width, float height)
パラメータ | タイプ | 説明 |
---|
pen | Pen | Pen 楕円の色、幅、スタイルを決定します。 |
x | Single | 楕円を定義する外接する四角形の左上隅の x 座標。 |
y | Single | 楕円を定義する外接する四角形の左上隅の y 座標。 |
width | Single | 楕円を定義する外接する四角形の幅。 |
height | Single | 楕円を定義する外接する四角形の高さ。 |
例外
例外 | 調子 |
---|
ArgumentNullException | pen無効である。 |
関連項目
DrawEllipse(Pen, Rectangle)
境界で指定された楕円を描画しますRectangle
構造体.
public void DrawEllipse(Pen pen, Rectangle rect)
パラメータ | タイプ | 説明 |
---|
pen | Pen | Pen 楕円の色、幅、スタイルを決定します。 |
rect | Rectangle | Rectangle 楕円の境界を定義する構造。 |
例外
例外 | 調子 |
---|
ArgumentNullException | pen無効である。 |
関連項目
DrawEllipse(Pen, int, int, int, int)
座標、高さ、幅のペアで指定された外接する四角形で定義される楕円を描画します。
public void DrawEllipse(Pen pen, int x, int y, int width, int height)
パラメータ | タイプ | 説明 |
---|
pen | Pen | Pen 楕円の色、幅、スタイルを決定します。 |
x | Int32 | 楕円を定義する外接する四角形の左上隅の x 座標。 |
y | Int32 | 楕円を定義する外接する四角形の左上隅の y 座標。 |
width | Int32 | 楕円を定義する外接する四角形の幅。 |
height | Int32 | 楕円を定義する外接する四角形の高さ。 |
例外
例外 | 調子 |
---|
ArgumentNullException | pen無効である。 |
関連項目