리턴된 Variant의 각 문자열에는 단일 필드의 경로 이름이 포함됩니다. 참조 내에서 가져온 경우 이 이름은 "점으로 구분된 이름"(예: 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); }