StringPrototype.fontcolor(Object, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
fontcolor(Object, Object) |
This API supports the product infrastructure and is not intended to be used directly from your code. Converts the specified object to text enclosed in font tags, and gives the element the specified color attribute. |
fontcolor(Object, Object)
Converts the specified object to text enclosed in font tags, and gives the element the specified color attribute.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
static System::String ^ fontcolor(System::Object ^ thisob, System::Object ^ colorName);
[Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.String_fontcolor)]
public static string fontcolor (object thisob, object colorName);
[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.String_fontcolor)>]
static member fontcolor : obj * obj -> string
Public Shared Function fontcolor (thisob As Object, colorName As Object) As String
Parameters
- thisob
- Object
The object that this method is acting upon.
- colorName
- Object
The color attribute of the font element.
Returns
A string in the form "<FONT COLOR=""+
colorName
+"">"+
thisob
+"</FONT>"
.
- Attributes