このオブジェクトのテンプレートである EntityDef オブジェクトの名前を戻します。
対応する EntityDef オブジェクトを取得するには、Session オブジェクトの GetEntityDef メソッドを呼び出します。
EntityDef オブジェクトのメソッドを使用する前に、Entity のメソッドを参照して、そのいずれかが必要な情報を戻すかどうかを確認する必要があります。EntityDef オブジェクトで入手できる共通情報の一部は、Entity のメソッドから直接に取得することもできます。
VBScript
set sessionObj = GetSession ' Get the EntityDef of the record using GetEntityDefName entityDefName = GetEntityDefName set entityDefObj = sessionObj.GetEntityDef(entityDefName)
Perl
$sessionobj = $entity->GetSession(); # Get the EntityDef of the record using GetEntityDefName $entitydefname = $entity->GetEntityDefName(); $entitydefobj = $sessionobj->GetEntityDef($entitydefname);