Italic - property of the ObjectFont object
Description:
The property returns or sets font as Italic.
Values:
false - Font is NOT as Italic
true - Font IS as Italic
Note:
Property access for read and write.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTable = pMe.Items("/Table");
oTable.Font.Italic = false;
// Writing into the property
Dim oTable
Set oTable = pMe.Items("/Table")
oTable.Font.Italic = false
' Writing into the property