public bool? UseErrorColor { get; set; }
Public Property UseErrorColor As Boolean?
Get
Set
Dim instance As ParseOptions
Dim value As Boolean?
value = instance.UseErrorColor
instance.UseErrorColor = value
public:
property Nullable<bool> UseErrorColor {
Nullable<bool> get ();
void set (Nullable<bool> value);
}
If this property is and the Error property is , the ParseWithErrorHandling method, the ParseT(String, Int32, ParseOptions) method and the CommandManager class will determine if color is supported using the EnableColor(StandardStream) method for the standard error stream.
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.