FxOperator の指定された接続が入力の場合は、true を戻します。
oBoolean = FxOperator.IsInputConnection( Index ); |
| パラメータ | タイプ | 詳細 |
|---|---|---|
| Index | Long | 接続のインデックス |
'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
|