Restituisce i nomi del percorso dei campi locali.
Ogni stringa nel valore Variant restituito contiene il nome del percorso di un singolo campo. È possibile che si tratti di un "nome puntato" se proviene da un riferimento (ad esempio, owner.login_name).
VBScript
entitydef.GetLocalFieldPathNames visible_only
Perl
$entitydef->GetLocalFieldPathNames(visible_only);
VBScript
set sessionObj = GetSession set entityDefObj = sessionObj.GetEntityDef(GetEntityDefName()) pathNames = entityDefObj.GetLocalFieldPathNames(False) For Each name in pathNames sessionObj.OutputDebugString "Path name: " & name Next
Perl
$sessionobj = $entity->GetSession(); $entitydefobj = $sessionobj->GetEntityDef($entity->GetEntityDefName()); $pathnames = $entitydefobj->GetLocalFieldPathNames(0); foreach $name (@$pathnames) { $sessionobj->OutputDebugString("Path name: ".$name); }