Graphics.DrawLine メソッド (Pen, Int32, Int32, Int32, Int32)
座標ペアで指定された 2 つの点を結ぶ直線を描画します。
Overloads Public Sub DrawLine( _
ByVal pen As Pen, _ ByVal x1 As Integer, _ ByVal y1 As Integer, _ ByVal x2 As Integer, _ ByVal y2 As Integer _)
[C#]
public void DrawLine(Penpen,intx1,inty1,intx2,inty2);
[C++]
public: void DrawLine(Pen* pen,intx1,inty1,intx2,inty2);
[JScript]
public function DrawLine(
pen : Pen,x1 : int,y1 : int,x2 : int,y2 : int);
パラメータ
- pen
直線の色、幅、およびスタイルを決定する Pen オブジェクト。 - x1
最初の点の x 座標。 - y1
最初の点の y 座標。 - x2
2 番目の点の x 座標。 - y2
2 番目の点の y 座標。
戻り値
このメソッドは値を返しません。
解説
このメソッドは、 x1 、 y1 、 x2 、 y2 の各パラメータで指定された 2 つの点を結ぶ直線を描画します。
使用例
[Visual Basic, C#] 次の例は、Windows フォームでの使用を意図してデザインされており、 Paint イベント ハンドラのパラメータである PaintEventArgs e が必要です。このコードは次のアクションを実行します。
- 黒いペンを作成します。
- 直線の終了点の座標を作成します。
- 画面に直線を描画します。
Public Sub DrawLineInt(e As PaintEventArgs)
' Create pen.
Dim blackPen As New Pen(Color.Black, 3)
' Create coordinates of points that define line.
Dim x1 As Integer = 100
Dim y1 As Integer = 100
Dim x2 As Integer = 500
Dim y2 As Integer = 100
' Draw line to screen.
e.Graphics.DrawLine(blackPen, x1, y1, x2, y2)
End Sub
[C#]
public void DrawLineInt(PaintEventArgs e)
{
// Create pen.
Pen blackPen = new Pen(Color.Black, 3);
// Create coordinates of points that define line.
int x1 = 100;
int y1 = 100;
int x2 = 500;
int y2 = 100;
// 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 ファミリ, .NET Compact Framework - Windows CE .NET
参照
Graphics クラス | Graphics メンバ | System.Drawing 名前空間 | Graphics.DrawLine オーバーロードの一覧