過去のナビゲーションリンクのスキップSecure Global Desktop 4.31 管理者ガイド > アプレット > isGroup (Webtop スクリプトアプレットおよび Webtop トレイアプレット)

isGroup (Webtop スクリプトアプレットおよび Webtop トレイアプレット)

構文

過去のコマンド構文またはプログラムコードのスキップString isGroup(String objectName)

説明

Returns "TRUE" if the object is a group; otherwise, it returns "FALSE".

objectName is the full TFN name of an object on the user's webtop.

This method can be used with either the webtop script applet or the webtop tray applet.

過去のコマンド構文またはプログラムコードのスキップverdict = applet.isGroup(".../_ens/o=Indigo Insurance/ou=Finance/ou=Administration/cn=Phone List");
if (verdict == "TRUE")
    alert("The object is a group!");
else
    alert("The object is NOT a group!");

Displays a dialog indicating whether the Phone List object is a group or not.

関連トピック