Causes a string to be displayed in a small font, as if it were in a SMALL tag.
String
small()
Use the small method with the Write method to format and display a string in a document.
The following example uses string methods to change the size of a string:
var worldString="Hello, world" Console.Write(worldString.small()) Console.Write("<P>" + worldString.big()) Console.Write("<P>" + worldString.fontsize(7))
The previous example produces the same output as the following HTML:
String:big, String:fontsize