Previous PageNext Page

7.24.23 strike Method

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

Syntax

strVariable.strike( )

"String Literal".strike( )

Arguments

strVariable
The name of a String object.

Remarks

The example that follows demonstrates how the strike method works:
 

var strVariable = "This is a string object";

strVariable = strVariable.strike( );

The value of strVariable after the last statement is:
 

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

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

Copyright © 2000 Chili!Soft

Previous PageTop Of PageNext Page