BottomTextFont

 

 

Returns or sets the font of BottomText (BottomText is optional text below the bar code and bar code text, if any)

 

Syntax

 

BarCodeWiz1.BottomTextFont

 

 

Visual Basic Examples

 

Example 1. Retrieve current font name

 

Dim ftName As String

ftName = BottomTextFont.Name

 

Example 2. Set BottomTextFont

 

Dim f As StdFont

Set f = New stdole.StdFont

f.Name = "Times New Roman"

f.Size = 16

Set BarCodeWiz1.BottomTextFont = f

 

Example 3. Change current BottomTextFont size.

 

Dim f As StdFont

Set f = New stdole.StdFont

Set f = BarCodeWiz1.BottomTextFont 'Retrieve current font

f.Size = 14

Set BarCodeWiz1.BottomTextFont = f