OverlayBitmap.DrawLine Method

このメソッドはライブ画像上に線を描画します。

構文

[VB.NET]
Public Sub  DrawLine
  ( clr As System.Drawing.Color, XStart As Integer , YStart As Integer , XEnd As Integer , YEnd As Integer  )
[C#]
public void  DrawLine( System.Drawing.Color clr, int XStart, int YStart, int XEnd, int YEnd );
パラメータ 説  明
color, clr 描画する線の色を指定します。
startcolumn, XStart 線を引き始めるライブ画像上の点のX座標をピクセルで指定します。
startrow, YStart 線を引き始めるライブ画像上の点のY座標をピクセルで指定します。
endcolumn, XEnd 線を引き終わるライブ画像上の点のX座標をピクセルで指定します。
endrow, YEnd 線を引き終わるライブ画像上の点のY座標をピクセルで指定します。

サンプル

この例ではライブ画像上に線を引く方法を紹介しています。

[VB.NET]
Dim ob As OverlayBitmap
ob = IcImagingControl1.OverlayBitmap

ob.DrawLine(System.Drawing.Color.Red, 10, 10, 10, 250)
[C#]
OverlayBitmap ob = ICImagingControl1.OverlayBitmapAtPath[PathPositions.Device];
ob.DrawLine(System.Drawing.Color.Red, 10, 10, 10, 250);