FxOperator.Render
 
 
 

FxOperator.Render

Description

Renders an FxOperator.

C# Syntax

FxOperator.Render( Boolean in_bInteractive );

Scripting Syntax

FxOperator.Render( [Interactive] );

Parameters

Parameter Type Description
Interactive Boolean If set the true the user will be prompted to start the rendering.

Default Value: False

Examples

VBScript Example

set oTree = ActiveSceneRoot.AddFxTree
set oFxOp1 = oTree.AddImageOperator("File Input")
oFXOp1.FileName = Application.InstallationPath(siFactoryPath) & "Data/XSI_SAMPLES/Pictures/cloud02.pic"
set oFxOp2 = oTree.AddImageOperator("File Output")
oFXOp2.EndFrame = 1
oFxOp1.Connect oFxOp2, 0
oFxOp2.Render

See Also

FxTree