IsInputConnection (FxOperator)
Description
Returns true if the specified connection of the FxOperator is an input.
Scripting Syntax
FxOperator.IsInputConnection( Index )
C# Syntax
Boolean FxOperator.IsInputConnection( Int32 in_nIndex );Parameters
|
Parameter |
Type |
Description |
|
Index |
Index of the connection |
Return Value
Examples
VBScript Example
'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
See Also
Autodesk Softimage v7.5