GetConnectedOperator (FxOperator)
Description
Returns the FxOperator object connected to the specified input connection.
Scripting Syntax
FxOperator.GetConnectedOperator( Index )
C# Syntax
FxOperator FxOperator.GetConnectedOperator( Int32 in_nIndex );Parameters
|
Parameter |
Type |
Description |
|
Index |
Index of the input connection |
Return Value
Examples
VBScript Example
set oRoot = ActiveProject.ActiveScene.Root
set oTree = oRoot.AddFxTree
set oFxOp = oTree.AddImageOperator("Noise")
set oSource = oTree.AddImageOperator("HighPassFilter")
oSource.Connect oFxOp, 0
LogMessage oFxOp.GetConnectedOperator(0).Name & " is connected to input 0"See Also
Autodesk Softimage v7.5