fontcolor Method (Windows Scripting - JScript)

Places an HTML <FONT> tag with the COLOR attribute around the text in a String object.

                      strVariable.fontcolor(colorVal)

Arguments

  • strVariable
    Required. Any String object or literal.

  • colorVal
    Required. String value containing a color value. This can either be the hexadecimal value for a color, or the predefined name for a color.

Remarks

The following example demonstrates the fontcolor method:

var strVariable = "This is a string";
strVariable = strVariable.fontcolor("red");

The value of strVariable after the last statement is:

<FONT COLOR="red">This is a string</FONT>

Valid predefined color names depend on your JScript host browser, and its version. Check your host browser's documentation for more information.

No checking is done to see if the tag has already been applied to the string.

Applies To: String Object (Windows Scripting - JScript)

Requirements

Version 1

See Also

Reference

fontsize Method (Windows Scripting - JScript)