FxTree.AddImageClipOperator

Description

Adds a new unconnected image clip FxOperator to the FxTree object.

C# Syntax

FxOperator FxTree.AddImageClipOperator( ImageClip in_ImageClip );

Scripting Syntax

oReturn = FxTree.AddImageClipOperator( Clip );

Return Value

FxOperator

Parameters

Parameter Type Description
Clip ImageClip Image clip associated with the new operator.

Examples

VBScript Example

'VBScript example
set oClip = CreateImageClip("c:\temp\abc.bmp", "NewClip")
set oRoot = ActiveProject.ActiveScene.Root
set oTree = oRoot.AddFxTree
set oOp = oTree.AddImageClipOperator(oClip)