PassContainer.Properties

説明

パスコンテナに実装されている各Propertyを含むPropertyCollectionを戻します。

注:PassContainer のすべてのプロパティは、継承するものがないため、ローカルプロパティになります。そのため、PassContainer オブジェクトの LocalProperties プロパティはありません。

C#構文

// get accessor

PropertyCollection rtn = PassContainer.Properties;

JScript の例

/*

	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] );

}