次の方法で共有


Graphics.DrawLine メソッド (Pen, Single, Single, Single, Single)

座標ペアで指定された 2 つの点を結ぶ直線を描画します。

Overloads Public Sub DrawLine( _
   ByVal pen As Pen, _   ByVal x1 As Single, _   ByVal y1 As Single, _   ByVal x2 As Single, _   ByVal y2 As Single _)
[C#]
public void DrawLine(Penpen,floatx1,floaty1,floatx2,floaty2);
[C++]
public: void DrawLine(Pen* pen,floatx1,floaty1,floatx2,floaty2);
[JScript]
public function DrawLine(
   pen : Pen,x1 : float,y1 : float,x2 : float,y2 : float);

パラメータ

  • pen
    直線の色、幅、およびスタイルを決定する Pen オブジェクト。
  • x1
    最初の点の x 座標。
  • y1
    最初の点の y 座標。
  • x2
    2 番目の点の x 座標。
  • y2
    2 番目の点の y 座標。

戻り値

このメソッドは値を返しません。

解説

このメソッドは、 x1y1x2y2 の各パラメータで指定された 2 つの点を結ぶ直線を描画します。

使用例

[Visual Basic, C#] 次の例は、Windows フォームでの使用を意図してデザインされており、 Paint イベント ハンドラのパラメータである PaintEventArgs e が必要です。このコードは次のアクションを実行します。

  • 黒いペンを作成します。
  • 直線の終了点の座標を作成します。
  • 画面に直線を描画します。
 
Public Sub DrawLineFloat(e As PaintEventArgs)
' Create pen.
Dim blackPen As New Pen(Color.Black, 3)
' Create coordinates of points that define line.
Dim x1 As Single = 100F
Dim y1 As Single = 100F
Dim x2 As Single = 500F
Dim y2 As Single = 100F
' Draw line to screen.
e.Graphics.DrawLine(blackPen, x1, y1, x2, y2)
End Sub
        
[C#] 
public void DrawLineFloat(PaintEventArgs e)
{
// Create pen.
Pen blackPen = new Pen(Color.Black, 3);
// Create coordinates of points that define line.
float x1 = 100.0F;
float y1 = 100.0F;
float x2 = 500.0F;
float y2 = 100.0F;
// Draw line to screen.
e.Graphics.DrawLine(blackPen, x1, y1, x2, y2);
}
        

[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.DrawLine オーバーロードの一覧