FxOperator.PositionX

Description

Sets or returns the x position of the FxOperator in the Softimage Illusion Fx Tree view as a Double.

C# Syntax

// get accessor

Double rtn = FxOperator.PositionX;

// set accessor

FxOperator.PositionX = Double;

Examples

VBScript Example

set oRoot = ActiveProject.ActiveScene.Root

set oTree = oRoot.AddFxTree

set oFxOp = oTree.AddImageOperator("File Input")

LogMessage "Position X : " & oFxOp.PositionX

See Also

FxTree