XSIProject.Properties

説明

プロジェクトの各Propertyを含むPropertyCollectionを戻します。

VBScript の例

'
'       This example displays the properties of the Active Project
'
set oProj = ActiveProject
for each oProp in oProj.Properties
        logmessage oProp.Name
next