FxOperator.GetConnectionName

説明

指定された接続の名前を戻します。

C#構文

String FxOperator.GetConnectionName( Int32 in_nIndex );

スクリプト構文

oString = FxOperator.GetConnectionName( Index );

戻り値

String

パラメータ

パラメータ タイプ 説明
Index Long 接続のインデックス

VBScript の例

set oRoot = ActiveProject.ActiveScene.Root

set oTree = oRoot.AddFxTree

set oFxOp = oTree.AddImageOperator("Noise")

for i = 0 to ( oFxOp.ConnectionCount - 1 )

	LogMessage "Connection ID " & i & " is named " & oFxOp.GetConnectionName(i)

next

関連項目

FxTree