Causes a string to be displayed in a big font as if it were in a BIG tag.
String
big()
Use the big 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(worldString.big()) Console.Write(worldString.fontsize(7))
The previous example produces the same output as the following HTML:
String.fontsize, String.small