前のトピック: existsFolder次のトピック: existsProcess


existsInteractionRequestForm

existsInteractionRequestForm 関数は、インタラクション リクエスト フォーム オブジェクトが指定されたパスに存在するかどうかを確認します。 絶対パスまたは相対パスで指定可能です。 相対パスは、スクリプトが実行されるプロセスに対する相対パスです。

構文

bExists = existsInteractionRequestForm(irfPath)

引数

irfPath (String)

存在を確認する必要のあるインタラクション リクエスト フォーム オブジェクトのフル/相対パスを指定します。

戻り値

bExists (Boolean)

インタラクション リクエスト フォーム オブジェクトが存在する場合は true を、存在しない場合は false を返します。

if (existsInteractionRequestForm(irfPath))
{
	Process.mseg_irf= "Interaction Request Form exists" ;
}
else
{
	Process.mseg_irf= "Interaction Request Form does not exist" ;
}