
Click above to get retro games delivered to your door ever month!
X-Hacker.org- ClipX.Lib v1.2 - <b>italicsbeg()</b>
[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
ItalicsBeg()
Returns/writes HTML Italics Begin tag <I>
---------------------------------------------------------------------
Syntax:
ItalicsBeg() ---> cString
Arguments: None
Returns: A character string consisting of the generated HTML tag.
Description:
Generates Italics Begin tag to start the italics font.
The generated string is always returned. The string will be written
to standard-out depending on the value of StopWrite().
The default StopWrite() value is FALSE. Setting the StopWrite() value
to TRUE will suspend the write to standard-out.
Must be terminated with ItalicsEnd() to end the italics font.
Examples:
Example 1 Using ItalicsBeg() with a word or phrase
htmlWrite( "The next word " )
ItalicsBeg()
htmlWrite( "is" )
ItalicsEnd()
htmlWrite( " displayed in italics font.." )
Example 2 Using ItalicsBeg() with multiple lines
ItalicsBeg()
htmlWrite( "Line 1 ..." )
htmlWrite( "Line 2 ..." )
htmlWrite( "Line 3 ..." )
ItalicsEnd()
Alternate:
htmlWrite( '<I>' )
Files: Library is ClipX.Lib
Online reference: Mikodocs Guide To HTML - Italics tag
See Also: ItalicsEnd()
Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson