OverlayBitmap.FlipVertical Property

Returns or sets vertical flipping of the overlay bitmap.
Syntax:
[C#]
public bool FlipVertical;
Limitations:

Run time only.

Remarks:

This property is used to enable and disable the vertical flipping of the overlay bitmap on the live video. If vertical flipping is enabled, the overlay bitmap will be drawn bottom up.

The default value of FlipVertical is False.

Example:

This example demonstrates how to enable vertical flipping.

[C#]
OverlayBitmap ob = ICImagingControl1.OverlayBitmapAtPath[PathPositions.Device]; // Enable vertical flipping. ob.FlipVertical = true;
See also: OverlayBitmap

<< ICImagingControl.OverlayBitmap