Graphics.DrawLine メソッド (Pen, Point, Point)
2 つの Point 構造体を接続する直線を描画します。
Overloads Public Sub DrawLine( _
ByVal pen As Pen, _ ByVal pt1 As Point, _ ByVal pt2 As Point _)
[C#]
public void DrawLine(Penpen,Pointpt1,Pointpt2);
[C++]
public: void DrawLine(Pen* pen,Pointpt1,Pointpt2);
[JScript]
public function DrawLine(
pen : Pen,pt1 : Point,pt2 : Point);
パラメータ
戻り値
このメソッドは値を返しません。
使用例
[Visual Basic, C#] 次の例は、Windows フォームでの使用を意図してデザインされており、 Paint イベント ハンドラのパラメータである PaintEventArgs e が必要です。このコードは次のアクションを実行します。
- 黒いペンを作成します。
- 直線の終了点に使用する点を作成します。
- 画面に直線を描画します。
Public Sub DrawLinePoint(e As PaintEventArgs)
' Create pen.
Dim blackPen As New Pen(Color.Black, 3)
' Create points that define line.
Dim point1 As New Point(100, 100)
Dim point2 As New Point(500, 100)
' Draw line to screen.
e.Graphics.DrawLine(blackPen, point1, point2)
End Sub
[C#]
public void DrawLinePoint(PaintEventArgs e)
{
// Create pen.
Pen blackPen = new Pen(Color.Black, 3);
// Create points that define line.
Point point1 = new Point(100, 100);
Point point2 = new Point(500, 100);
// Draw line to screen.
e.Graphics.DrawLine(blackPen, point1, point2);
}
[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 オーバーロードの一覧