Title - property of the PmaString object
Description:
Text string that describes the value of this object in more details.
Note:
Property access
for read and write.
The preset value of this property is defined in the "
Title" configurator of this object.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oString = pMe.Pm("/String0");
var sTitle = oString.Title;
// or
oString.Title = "Title test";
Dim oString, sTitle
Set oString = pMe.Pm("/String0")
sTitle = oString.Title
' or
oString.Title = "Title test"