IsConnected (FxOperator)

Description

Returns true if the FxOperator has the specified input connected.

Scripting Syntax

FxOperator.IsConnected( Index )

C# Syntax

Boolean FxOperator.IsConnected( Int32 in_nIndex );

Parameters

Parameter

Type

Description

Index

Long

Index of the input connection to test

Return Value

Boolean

Examples

VBScript Example

set oRoot = ActiveProject.ActiveScene.Root
set oTree = oRoot.AddFxTree
set oFxOp = oTree.AddImageOperator("Noise")

LogMessage "IsConnected: " & oFxOp.IsConnected(0)

set oSource = oTree.AddImageOperator("HighPassFilter")
oSource.Connect oFxOp, 0

LogMessage "IsConnected: " & oFxOp.IsConnected(0)

See Also

FxTree



Autodesk Softimage v7.5