Reflection Desktop VBA Guide
Attachmate.Reflection.Objects.Emulation.IbmHosts Library / Attachmate.Reflection.Objects.Emulation.IbmHosts Library / ThemeFont Object / DisplayVariableWidthFonts Property
Example
In This Topic
    DisplayVariableWidthFonts Property
    In This Topic
    Gets or sets whether variable width fonts appear in the list of fonts in the Fonts section of the Theme Settings.
    Syntax
    expression.DisplayVariableWidthFonts As Boolean
    where expression is a variable that represents a ThemeFont Object
    Example
    This example disables variable width fonts so that only fixed width fonts are displayed in the Fonts section of the Theme settings.
    Sub DisableVariableWidthFonts()
        ThisIbmTerminal.Theme.Font.DisplayVariableWidthFonts = False
    End Sub
    See Also