Previous PageNext Page

7.24.8 fixed Method

Places HTML <TT> tags around text in a String object.
 

Syntax

strVariable.fixed( )

"String Literal".fixed( )

Arguments

strVariable
A String object.

Remarks

The example that follows demonstrates how the fixed method works:
 

var strVariable = "This is a string object";

strVariable = strVariable.fixed( );

The value of strVariable after the last statement is:
 

<TT>This is a string object</TT>

No check is done to see if the tag already exists.
 

Copyright © 2000 Chili!Soft

Previous PageTop Of PageNext Page