Graphics.DrawLine
コンテンツ
[
隠れる
]DrawLine(Pen, Point, Point)
2 つを結ぶ線を描画しますPoint構造物.
public void DrawLine(Pen pen, Point pt1, Point pt2)
パラメータ | タイプ | 説明 |
---|---|---|
pen | Pen | Pen線の色、幅、およびスタイルを決定します。 |
pt1 | Point | Point接続する最初のポイントを表す構造。 |
pt2 | Point | Point接続する 2 番目のポイントを表す構造。 |
関連項目
- class Pen
- struct Point
- class Graphics
- 名前空間 System.Drawing
- 組み立て Aspose.Drawing
DrawLine(Pen, int, int, int, int)
座標ペアで指定された 2 点を結ぶ線を描画します。
public void DrawLine(Pen pen, int x1, int y1, int x2, int y2)
パラメータ | タイプ | 説明 |
---|---|---|
pen | Pen | 線の色、幅、スタイルを決定するペン。 |
x1 | Int32 | 最初の点の x 座標。 |
y1 | Int32 | 最初の点の y 座標。 |
x2 | Int32 | 2 番目の点の x 座標。 |
y2 | Int32 | 2 番目の点の y 座標。 |
関連項目
- class Pen
- class Graphics
- 名前空間 System.Drawing
- 組み立て Aspose.Drawing
DrawLine(Pen, PointF, PointF)
2 つの PointF 構造体を結ぶ線を描画します。
public void DrawLine(Pen pen, PointF pt1, PointF pt2)
パラメータ | タイプ | 説明 |
---|---|---|
pen | Pen | 線の色、幅、スタイルを決定するペン。 |
pt1 | PointF | 接続する最初のポイントを表す PointF 構造体。 |
pt2 | PointF | 接続する 2 番目の点を表す PointF 構造体。 |
関連項目
- class Pen
- struct PointF
- class Graphics
- 名前空間 System.Drawing
- 組み立て Aspose.Drawing
DrawLine(Pen, float, float, float, float)
座標ペアで指定された 2 点を結ぶ線を描画します。
public void DrawLine(Pen pen, float x1, float y1, float x2, float y2)
パラメータ | タイプ | 説明 |
---|---|---|
pen | Pen | 線の色、幅、スタイルを決定するペン。 |
x1 | Single | 最初の点の x 座標。 |
y1 | Single | 最初の点の y 座標。 |
x2 | Single | 2 番目の点の x 座標。 |
y2 | Single | 2 番目の点の y 座標。 |
関連項目
- class Pen
- class Graphics
- 名前空間 System.Drawing
- 組み立て Aspose.Drawing