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

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

構文

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

説明

Returns the name of the next object found in the iterator identified by iteratorHandle.

iteratorHandle is the handle to an iterator previously created with one of the getIterator methods.

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

過去のコマンド構文またはプログラムコードのスキップwhile (applet.getIteratorHasMoreElements(iterator) == "TRUE"){

    current = applet.getNextIteratorElement(iterator);
}

Iterates through all elements in sequential order.

The code doesn't form a complete example. You'll need to add your own code and adapt it to produce a working example.

関連トピック