Returns true if the specified connection of the FxOperator is an input.
| oBoolean = FxOperator.IsInputConnection( Index ); | 
| Parameter | Type | Description | 
|---|---|---|
| Index | Long | Index of the connection | 
| 
'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
 |