Returns true if the specified connection of the FxOperator is a mask input.
oBoolean = FxOperator.IsMaskConnection( Index ); |
| Parameter | Type | Description |
|---|---|---|
| Index | Long | Index of the connection |
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) & " is an input mask? : " & oFxOp.IsMaskConnection(Cnx)
next
|