Returns true if the FxOperator has the specified input connected.
Boolean FxOperator.IsConnected( Int32 in_nIndex ); |
oBoolean = FxOperator.IsConnected( Index ); |
| Parameter | Type | Description |
|---|---|---|
| Index | Long | Index of the input connection to test |
set oRoot = ActiveProject.ActiveScene.Root
set oTree = oRoot.AddFxTree
set oFxOp = oTree.AddImageOperator("Noise")
LogMessage "IsConnected: " & oFxOp.IsConnected(0)
set oSource = oTree.AddImageOperator("HighPassFilter")
oSource.Connect oFxOp, 0
LogMessage "IsConnected: " & oFxOp.IsConnected(0) |