InfoConnect API Guide
Attachmate.Reflection.Emulation.Common Namespace / Theme Class / Font Property
Example


In This Topic
    Font Property (Theme)
    In This Topic
    Gets the font object associated with the theme.
    Syntax
    'Declaration
     
    
    Public ReadOnly Property Font As IThemeFont
    'Usage
     
    
    Dim instance As Theme
    Dim value As IThemeFont
     
    value = instance.Font
    public IThemeFont Font {get;}
    Example
    private Theme theme;
    private IThemeFont font;
    //Gets the theme font.
    font = theme.Font;
    See Also