Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns a string with HTML <SMALL> tags around the text in a String object.
function small() : String
Remarks
No checking is done to see if the tag has already been applied to the string.
Example
The following example illustrates the use of the small method:
var strVariable = "This is a string";
strVariable = strVariable.small();
The value of strVariable after the last statement is:
<SMALL>This is a string</SMALL>