BarCodeWiz Barcode ActiveX
Control
User Manual
 | Installation |
 | Quick Start |
 | Bar Code Types (Symbologies) |
 | Reference |
 | Properties |
 | Methods |
 | Events |
 | License |
|
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
| ftName = BottomTextFont.Name
|
Example 2. Set BottomTextFont
| Set f = New stdole.StdFont
|
| f.Name = "Times New Roman"
|
| Set BarCodeWiz1.BottomTextFont = f
|
Example 3. Change current BottomTextFont size.
| Set f = New stdole.StdFont
|
| Set f = BarCodeWiz1.BottomTextFont 'Retrieve current font
|
| Set BarCodeWiz1.BottomTextFont = f
|
|