Önceki Başlık: existsCustomIconSonraki Başlık: existsDataset


existsCustomOperator

existsCustomOperator işlevi, belirtilen yolda bir özel işleç nesnesinin mevcut olup olmadığını denetler. Yol, mutlak/bağıntılı bir yol olabilir. Bağıntılı yol, komut dosyasının yürütüldüğü işlemle bağıntılıdır.

Sözdizimi

bExists = existsCustomOperator(customOperatorPath)

Bağımsız Değişkenler

customOperatorPath (String)

Varlığının denetlenmesi gereken özel işleç nesnesinin tam/bağıntılı yolunu belirtir.

Dönüş Değeri

bExists (Boolean)

Özel işleç varsa true değerini; aksi takdirde, false değerini döndürür.

Örnek

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