OverlayBitmap.FlipVertical Property

Returns or sets vertical flipping of the overlay bitmap.
Syntax:
Public FlipVertical As Boolean
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.

Dim ob As OverlayBitmap

Set ob = ICImagingControl1.OverlayBitmap
' Enable vertical flipping.
ob.FlipVertical = True
See also: OverlayBitmap

<< ICImagingControl.OverlayBitmap