Entity オブジェクトの現在の状態の名前を戻します。
Entity オブジェクトが編集不能の場合、このメソッドは単に、レコードの現在の状態を戻します。 Entity オブジェクトが編集可能で、現在のアクションが状態の変化に関係している場合、このメソッドはレコードの新規の状態を戻します。
VBScript
entity.LookupStateName
Perl
$entity->LookupStateName();
VBScript
' Find the entity's current state name
currentState = LookupStateName
Perl
# Find the entity's current state name
$currentstate = $entity->LookupStateName();