OverlayBitmap.Enable Property

Returns or sets the currently enabled state of the overlay bitmap.
Syntax:
[C#]
public bool Enable;
Limitations:

Run time only.

Remarks:

This property is used to enable and disable the displaying of the overlay bitmap on the live video. Setting this property to False causes IC Imaging Control to hide the overlay bitmap. No drawings or texts can be seen. Setting this property to True causes IC Imaging Control to show the overlay bitmap on the live video. All texts and drawings can be seen.

The default value of Enable is False.

Example:

This example demonstrates how to enable the display of the overlay bitmap.

[C#]
OverlayBitmap ob = ICImagingControl1.OverlayBitmapAtPath[PathPositions.Device]; // Enable the overlay bitmap for drawing. ob.Enable = true;
See also: OverlayBitmap

<< ICImagingControl.OverlayBitmap