standard.settings.italic

getElement(id).settings.italic()

Makes any text in the element appear in italic.

Example:

[js highlight=”3″ try=”true”]newText(“warnning”, “NOTE: this text is a warning!”)
.settings.bold()
.settings.italic()
.settings.color(“red”)
.print()
[/js]

Prints a text in boldface, italic and red.