big

Causes a string to be displayed in a big font as if it were in a BIG tag.

Applies to

String

Syntax

big()

Parameters

None

Description

Use the big method with the Write method to format and display a string in a document.

Example

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:

<SMALL>Hello, world</SMALL>
<BIG>Hello, world</BIG>
<FONTSIZE=7>Hello, world</FONTSIZE>

See also

String.fontsize, String.small