String.fontsize() MethodNameString.fontsize() Method---set a string's font size with <FONT>AvailabilityNavigator 2.0, Internet Explorer 3.0 Synopsis
string.fontsize(size) Arguments
ReturnsA copy of string, contained within <FONT SIZE="size"> and </FONT> HTML tags. ExampleThe first two lines of the following code fragment have the same effect as the second two:
s1 = 'Chapter 1'.fontsize(6); s2 = 'SMALLCAPS'.fontsize('-1'); s1 = '<FONT SIZE="6">Chapter 1</FONT>' s2 = '<FONT SIZE="-1">SMALLCAPS</FONT>' |
|