パスコンテナに実装されている各Propertyを含むPropertyCollectionを戻します。
注:PassContainer のすべてのプロパティは、継承するものがないため、ローカルプロパティになります。そのため、PassContainer オブジェクトの LocalProperties プロパティはありません。
| // get accessor PropertyCollection rtn = PassContainer.Properties; | 
| /*
	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] );
} |