指定された接続の名前を戻します。
String FxOperator.GetConnectionName( Int32 in_nIndex ); |
oString = FxOperator.GetConnectionName( Index ); |
| パラメータ | タイプ | 説明 |
|---|---|---|
| Index | Long | 接続のインデックス |
set oRoot = ActiveProject.ActiveScene.Root
set oTree = oRoot.AddFxTree
set oFxOp = oTree.AddImageOperator("Noise")
for i = 0 to ( oFxOp.ConnectionCount - 1 )
LogMessage "Connection ID " & i & " is named " & oFxOp.GetConnectionName(i)
next |