GetCurrentRFInstance( )

ルールが現在実行されているフォーム インスタンス番号を取得します。

構文

GetCurrentRFInstance()

パラメータ

なし。

戻り値

ルールが実行される繰返しフォーム・インスタンス番号。

例3-56これが最初のインスタンスである場合は、aeDateが入力されていない場合に問合せを発行します。

// If this is the first instance, raise a query if aeDate is not entered
 
 
return (GetCurrentRFInstance() == 1 && aeDate === null)?false:true;