次の方法で共有


Graphics.DrawLine メソッド

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

オーバーロードの一覧

2 つの Point 構造体を接続する直線を描画します。

[Visual Basic] Overloads Public Sub DrawLine(Pen, Point, Point)

[C#] public void DrawLine(Pen, Point, Point);

[C++] public: void DrawLine(Pen*, Point, Point);

[JScript] public function DrawLine(Pen, Point, Point);

2 つの PointF 構造体を接続する直線を描画します。

[Visual Basic] Overloads Public Sub DrawLine(Pen, PointF, PointF)

[C#] public void DrawLine(Pen, PointF, PointF);

[C++] public: void DrawLine(Pen*, PointF, PointF);

[JScript] public function DrawLine(Pen, PointF, PointF);

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

.NET Compact Framework でもサポート。

[Visual Basic] Overloads Public Sub DrawLine(Pen, Integer, Integer, Integer, Integer)

[C#] public void DrawLine(Pen, int, int, int, int);

[C++] public: void DrawLine(Pen*, int, int, int, int);

[JScript] public function DrawLine(Pen, int, int, int, int);

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

[Visual Basic] Overloads Public Sub DrawLine(Pen, Single, Single, Single, Single)

[C#] public void DrawLine(Pen, float, float, float, float);

[C++] public: void DrawLine(Pen*, float, float, float, float);

[JScript] public function DrawLine(Pen, float, float, float, float);

使用例

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

  • 黒いペンを作成します。
  • 直線の終了点の座標を作成します。
  • 画面に直線を描画します。

[Visual Basic, C#] メモ   ここでは、DrawLine のオーバーロード形式のうちの 1 つだけについて、使用例を示します。その他の例については、各オーバーロード形式のトピックを参照してください。

 
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# のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

参照

Graphics クラス | Graphics メンバ | System.Drawing 名前空間