nIndex | (Long) Pořadí (index) vnořeného Pmg objektu (indexováno od 0). |
---|
var i, oObject;
var oRoot = pMe.Root;
var nChildCount = oRoot.GetChildCount();
for (i = 0; i < nChildCount; i++)
{
oObject = oRoot.GetChildByIndex(i);
Pm.Debug(oObject.Name);
}