XSIApplication.Selection

説明

選択されているオブジェクトのコレクションを Selection として戻します。このコレクション内の各オブジェクトは、SIObject で表現されます。

C#構文

// get accessor

Selection rtn = XSIApplication.Selection;

VBScript の例

'

'	Get the name of each selected object

'

SelectAll

set oSelection = Application.Selection

for each oItem in oSelection

	LogMessage oItem.Name

next