Returns the name of the specified connection.
String FxOperator.GetConnectionName( Int32 in_nIndex ); |
oString = FxOperator.GetConnectionName( Index ); |
| Parameter | Type | Description |
|---|---|---|
| Index | Long | Index of the connection |
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)
next
|