XSIProject.Properties

説明

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

C#構文

// get accessor

PropertyCollection rtn = XSIProject.Properties;

VBScript の例

'

'	This example displays the properties of the Active Project

'

set oProj = ActiveProject

for each oProp in oProj.Properties

	logmessage oProp.Name

next