Title - property of the PmaNumber object
Description:
Object description - the 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 oNumber = pMe.Pm("/Number0");
var sTitle = oNumber.Title; //Reading the value
oNumber.Title = sTitle; //Writing the value
Dim oNumber, sTitle
Set oNumber = pMe.Pm("/Number0")
sTitle = oNumber.Title 'Reading the value
oNumber.Title = sTitle 'Writing the value