Sun Chili!Soft ASP Sun Chili!Soft
ASP Sun Microsystems

 

JScript String Object fontcolor Method

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

Syntax: JScript String Object fontcolor Method

strVariable.fontcolor(colorval)

"String Literal".fontcolor(colorval)

Arguments: JScript String Object fontcolor Method

strVariable

A String object.

colorval

A string containing a color value. This can either be the hexadecimal value for a color, or the predefined name for a color.

Remarks: JScript String Object fontcolor Method

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, server, and so forth). They may also vary from version to version of your host. Check your host documentation for more information.

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

Copyright 2002 Sun Microsystems, Inc. All rights reserved. Legal Notice.