Index - property of the PmVar object
Description:
Index of the variable in the object (zero-based index).
Note:
Property access for read only.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oData = pMe.Pm("/Data");
var nIntex = oData.Item("NameVar").Index;
// Reading from the property
Dim oData
Set oData = pMe.Pm("/Data")
Dim nIntex
nIntex = oData.Item("NameVar").Index
' Reading from the property