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.
/* 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] ); } |