FxOperator.IsInputConnection

説明

FxOperator の指定された接続が入力の場合は、true を戻します。

C#構文

Boolean FxOperator.IsInputConnection( Int32 in_nIndex );

スクリプト構文

oBoolean = FxOperator.IsInputConnection( Index );

戻り値

Boolean

パラメータ

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

VBScript の例

'VBScript example

set oRoot = ActiveProject.ActiveScene.Root

set oTree = oRoot.AddFxTree

set oFxOp = oTree.AddImageOperator("Noise")

for Cnx = 0 to oFxOp.ConnectionCount - 1

	LogMessage oFxOp.GetConnectionName(Cnx) & " is an input? : " & oFxOp.IsInputConnection(Cnx)

next

関連項目

FxTree