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 default 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;
// Reading from the property
oString.Title = "Title test";
// Writing into the property
Dim oString
Set oString = pMe.Pm("/String0")
Dim sTitle
sTitle = oString.Title
' Reading from the property
oString.Title = "Title test"
' Writing into the property