OutputDocument.SetTextDefaultColor

Prototypes

void SetTextDefaultColor()

Parameters

None

Remarks

This method sets the color of subsequent textual output to be the default color used by Windows for displaying text in a window.

Example
declare OutputDocument doc = OutputDocument.GetDefault();

doc.SetTextColor( RED );
print "This text is in red.";

doc.SetTextDefaultColor();
print "This text is in the default color.";
See Also

OutputDocument.SetTextColor