OverlayBitmap.Font Property

Returns or sets the font for OverlayBitmap.DrawText.
Syntax:
Public Font As StdFont
Limitations:

Run time only.

Example:

This example demonstrates how to create a font object and set it to the OverlayBitmap object to draw text.

Dim ob As OverlayBitmap
Dim Font As New StdFont
Font.Name = "Arial"
Font.Size = 14
Font.Bold = True

Set ob = ICImagingControl1.OverlayBitmap
' Set the created font.
ob.Font = Font
ob.DrawText RGB(255, 0, 0), 10, 10, "IC Imaging Control in Arial bold, size 14"
See also: OverlayBitmap, OverlayBitmap.DrawText, OverlayBitmap.FontBackColor, OverlayBitmap.FontTransparent

<< ICImagingControl.OverlayBitmap