'DeclarationPublic ReadOnly Property ForegroundColor As ScreenColor
'UsageDim instance As HostField Dim value As ScreenColor value = instance.ForegroundColor
public ScreenColor ForegroundColor {get;}
Gets the foreground color for the specified terminal attribute.'DeclarationPublic ReadOnly Property ForegroundColor As ScreenColor
'UsageDim instance As HostField Dim value As ScreenColor value = instance.ForegroundColor
public ScreenColor ForegroundColor {get;}
HostField host;
ScreenColor scrColor;
//Get the foreground color.
scrColor = host.ForegroundColor;