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