Multiline - property of the PmgString object
Description:
Enable/disable displaying the text on more than one line.
Note:
Property access
for read and write. The preset value of this property is defined in the "
Multiline text" configurator of this object.
This property is not functional in Web panels
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oString = pMe.Items("/Txt");
var bMultiline = oString.Multiline; //reading
oString.Multiline = true; //writing
Dim oString, bMultiline
Set oString = pMe.Items("/Txt")
bMultiline = oString.Multiline 'reading
oString.Multiline = true 'writing