FxOperator.GetConnectionFlag

説明

FxOperator の指定された接続における、特定のフラグの状態を戻します。

スクリプト 構文

oBoolean = FxOperator.GetConnectionFlag( Index, FlagID );

戻り値

Boolean

パラメータ

パラメータ タイプ 詳細
Index Long 接続のインデックス
FlagID Long フラグのタイプ

指定可能な値:

説明:

1 Invert フラグを指定します。
2 Selected フラグを指定します。

VBScript の例

set oRoot = ActiveProject.ActiveScene.Root
set oTree = oRoot.AddFxTree
set oFxOp = oTree.AddImageOperator("Noise")
for Cnx = 0 to oFxOp.ConnectionCount - 1
        LogMessage oFxOp.GetConnectionName(Cnx) & " support Invert flag? : " & oFxOp.IsConnectionFlagSupported(Cnx, 2)
        if oFxOp.IsConnectionFlagSupported(Cnx, 2) then
                LogMessage oFxOp.GetConnectionName(Cnx) & " Invert flag set? : " & oFxOp.GetConnectionFlag(Cnx, 2)
        end if
        LogMessage oFxOp.GetConnectionName(Cnx) & " support Select flag? : " & oFxOp.IsConnectionFlagSupported(Cnx, 1)
        if oFxOp.IsConnectionFlagSupported(Cnx, 1) then
                LogMessage oFxOp.GetConnectionName(Cnx) & " Select flag set? : " & oFxOp.GetConnectionFlag(Cnx, 1)
        end if
next

関連項目

FxTree