ローカル フィールドのパス名を戻します。
戻された 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);
}