fontsize

Causes a string to be displayed in the specified font size as if it were in a <FONT SIZE=size> tag.

Applies to

String

Syntax

fontsize(size)

Parameters

size

An integer between 1 and 7, a string representing a signed integer between 1 and 7.

Description

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

When you specify size as an integer, you set the size of stringName to one of the 7 defined sizes. When you specify size as a string such as "-2", you adjust the font size of stringName relative to the size set in the BASEFONT tag.

Example

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:

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

See also

String.big, String.small