public TriState UseErrorColor { get; set; }
Public Property UseErrorColor As TriState
Get
Set
Dim instance As ParseOptions
Dim value As TriState
value = instance.UseErrorColor
instance.UseErrorColor = value
public:
property TriState UseErrorColor {
TriState get ();
void set (TriState value);
}
Only the parsing methods that automatically handle errors will use this property.
If this property is TriStateAuto and the Error property is , color will be used if the standard error stream supports it, as determined by the VirtualTerminalEnableColor(StandardStream) method.
If this property is set to explicitly, virtual terminal sequences may be included in the output even if it's not supported, which may lead to garbage characters appearing in the output.