Size - property of the ObjectFont object
Description:
The font size.
Note:
Property access for read and write.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTable = pMe.Items("/Table");
oTable.Font.Size = 12;
// Writing into the property
Dim oTable
Set oTable = pMe.Items("/Table")
oTable.Font.Size = 12
' Writing into the property