前のトピック: existsCustomIcon次のトピック: existsDataset


existsCustomOperator

existsCustomOperator 関数は、カスタム オペレータ オブジェクトが指定されたパスに存在するかどうかを確認します。 絶対パスまたは相対パスで指定可能です。 相対パスは、スクリプトが実行されるプロセスに対する相対パスです。

構文

bExists = existsCustomOperator(customOperatorPath)

引数

customOperatorPath (String)

存在を確認する必要のあるカスタム オペレータのフル/相対パスを指定します。

戻り値

bExists (Boolean)

カスタム オペレータが存在する場合は true を、存在しない場合は false を返します。

if (existsCustomOperator(customOperatorpath))
{
	Process.mseg_custom_operator= "CustomOperator exists" ;
}
else
{
	Process.mseg_custom_operator= "CustomOperator does not exist" ;
}