Graphics.FillEllipse メソッド (Brush, RectangleF)
RectangleF 構造体で指定された外接する四角形によって定義される楕円の内部を塗りつぶします。
Overloads Public Sub FillEllipse( _
ByVal brush As Brush, _ ByVal rect As RectangleF _)
[C#]
public void FillEllipse(Brushbrush,RectangleFrect);
[C++]
public: void FillEllipse(Brush* brush,RectangleFrect);
[JScript]
public function FillEllipse(
brush : Brush,rect : RectangleF);
パラメータ
- brush
塗りつぶしの特性を決定する Brush オブジェクト。 - rect
楕円を定義する外接する四角形を表す RectangleF 構造体。
戻り値
このメソッドは値を返しません。
解説
このメソッドは、楕円の内部を Brush オブジェクトで塗りつぶします。この楕円は、 rect パラメータによって表される外接する四角形で定義されます。
使用例
[Visual Basic, C#] 次の例は、Windows フォームでの使用を意図してデザインされており、 Paint イベント ハンドラのパラメータである PaintEventArgs e が必要です。このコードは次のアクションを実行します。
- 赤いソリッド ブラシを作成します。
- 楕円に外接する四角形を作成します。
- 画面の楕円を塗りつぶします。
Public Sub FillEllipseRectangleF(e As PaintEventArgs)
' Create solid brush.
Dim redBrush As New SolidBrush(Color.Red)
' Create rectangle for ellipse.
Dim x As Single = 0F
Dim y As Single = 0F
Dim width As Single = 200F
Dim height As Single = 100F
Dim rect As New RectangleF(x, y, width, height)
' Fill ellipse on screen.
e.Graphics.FillEllipse(redBrush, rect)
End Sub
[C#]
public void FillEllipseRectangleF(PaintEventArgs e)
{
// Create solid brush.
SolidBrush redBrush = new SolidBrush(Color.Red);
// Create rectangle for ellipse.
float x = 0.0F;
float y = 0.0F;
float width = 200.0F;
float height = 100.0F;
RectangleF rect = new RectangleF( x, y, width, height);
// Fill ellipse on screen.
e.Graphics.FillEllipse(redBrush, rect);
}
[C++, JScript] C++ および JScript のサンプルはありません。Visual Basic および C# のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
参照
Graphics クラス | Graphics メンバ | System.Drawing 名前空間 | Graphics.FillEllipse オーバーロードの一覧