FxOperatorCollection

Introduced

v2.5

Description

A collection of FxOperator objects.

Methods

Filter Find GetAsText  
       

Properties

Count operator Item operator    
       

Examples

VBScript Example

'VBScript example

set oRoot = ActiveProject.ActiveScene.Root

set oTree = oRoot.AddFxTree

oTree.AddImageOperator "Noise"

oTree.AddImageOperator "Resize"

for each operator in oTree.FxOperators

	LogMessage "Name of Fx Operator: " & operator.Name

next

See Also

FxTree.FxOperators