FontId - property of the PmgString object
Note:
Property access
for read and write.
The default 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 oString = pMe.Items("/Txt");
var sFontId = oString.FontId;
// Reading from the property
oString.FontId = "PmBig";
// Writing into the property
Dim oString
Set oString = pMe.Items("/Txt")
Dim sFontId
sFontId = oString.FontId
' Reading from the property
oString.FontId = "PmBig"
' Writing into the property