PassContainer.Properties
 
 
 

PassContainer.Properties

Description

Returns a PropertyCollection containing each Property installed on the pass container.

Note: All properties on the PassContainer are local properties, since it doesn't inherit any. Hence there is no LocalProperties property on the PassContainer object.

C# Syntax

// get accessor
PropertyCollection rtn = PassContainer.Properties;

Examples

JScript Example

/*
        This example demonstrates how to find the properties on the PassContainer 
*/
var passContainer = ActiveProject.ActiveScene.PassContainer;
var pcProperties = passContainer.Properties;
for ( var i=0; i<pcProperties.Count; i++ ) {
        Application.LogMessage( "PassContainerProperty["+i+"]: "+pcProperties[i] );
}