FxOperator.GetConnectionName
 
 
 

FxOperator.GetConnectionName

Description

Returns the name of the specified connection.

C# Syntax

String FxOperator.GetConnectionName( Int32 in_nIndex );

Scripting Syntax

oString = FxOperator.GetConnectionName( Index );

Return Value

String

Parameters

Parameter Type Description
Index Long Index of the connection

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)
next

See Also

FxTree