Name - property of the PmVar object
Description:
Name of the variable (case sensitive text).
Note:
Property access for
read only.
The value of this property is defined in the "
Name" configurator of this object.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oData = pMe.Pm("/Data");
var sName = oData.Item(2).Name;
// Reading from the property
Dim oData
Set oData = pMe.Pm("/Data")
Dim sName
sName = oData.Item(2).Name
' Reading from the property