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