Font - property of the PmgWTable object
Description:
Font of non-fixed table cells.
The property returns the
ObjectFont object. The font appearance can be changed by writing into its properties.
Note:
Property access for
read only.
The value of this property is defined in the "
Font" configurator of this object.
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTable = pMe.Items("/Table");
oTable.Font.Name = "MS Sans Serif";
oTable.Font.Size = 12;
oTable.Font.Italic = false;
oTable.Font.Bold = true;
Dim oTable
Set oTable = pMe.Items("/Table")
oTable.Font.Name = "MS Sans Serif"
oTable.Font.Size = 12
oTable.Font.Italic = false
oTable.Font.Bold = true