XSIProject.Properties

Description

Returns a PropertyCollection containing each Property in the project.

C# Syntax

// get accessor
PropertyCollection rtn = XSIProject.Properties;

Examples

VBScript Example

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