InfoConnect API Guide
Attachmate.Reflection.Emulation.Common Namespace / ScreenCharacter Class / ForegroundColor Property
Example


In This Topic
    ForegroundColor Property (ScreenCharacter)
    In This Topic
    Gets the foreground color.
    Syntax
    'Declaration
     
    
    Public ReadOnly Property ForegroundColor As ScreenColor
    'Usage
     
    
    Dim instance As ScreenCharacter
    Dim value As ScreenColor
     
    value = instance.ForegroundColor
    public ScreenColor ForegroundColor {get;}
    Example
    private ScreenCharacter screen;
    private ScreenColor color;
    //Get ScreenColor.
    color = screen.ForegroundColor;
    See Also