OverlayBitmap.DrawSolidRect Method

This method draws a solid, filled rectangle on the live video.
Syntax:
Public Sub DrawSolidRect( color As Long, startcolumn As Long, startrow As Long, endcolumn As Long, endrow As Long)
Parameter Description
color, clr

Specifies the color of the rectangle.

startcolumn, XStart

Specifies the column in pixel units of the upper left hand corner of the rectangle on the live video.

startrow, YStart

Specifies the row in pixel units of the upper left hand corner of the rectangle on the live video.

endcolumn, XEnd

Specifies the column in pixel of the lower right hand corner of the rectangle on the live video.

endrow, YEnd

Specifies the row in pixel units of the lower right hand corner of the rectangle on the live video.

Limitations:

Run time only. Only after ICImagingControl.LiveStart has been called once.

Example:

This example demonstrates how to draw a red rectangle on the live video.

Dim ob As OverlayBitmap

Set ob = ICImagingControl1.OverlayBitmap

ob.DrawSolidRect RGB(255, 0, 0), 10,10, 10, 250
See also: OverlayBitmap, OverlayBitmap.DrawFrameRect, ICImagingControl.LiveStart

<< ICImagingControl.OverlayBitmap