GetConnectionName (FxOperator)
Description
Returns the name of the specified connection.
Scripting Syntax
FxOperator.GetConnectionName( Index )
C# Syntax
String FxOperator.GetConnectionName( Int32 in_nIndex );Parameters
|
Parameter |
Type |
Description |
|
Index |
Index of the connection |
Return Value
Examples
VBScript Example
set oRoot = ActiveProject.ActiveScene.Root
set oTree = oRoot.AddFxTree
set oFxOp = oTree.AddImageOperator("Noise")
for i = 0 to ( oFxOp.ConnectionCount - 1 )
LogMessage "Connection ID " & i & " is named " & oFxOp.GetConnectionName(i)
nextSee Also
Autodesk Softimage v7.5