v3.0
File Output タイプの FxOperator をレンダリングします。
注: Interactiveパラメータの値とは無関係に、このコマンドは常にプログレスバーを表示します。
RenderFxOp( [InputObj], [Interactive] ); |
パラメータ | タイプ | 説明 |
---|---|---|
InputObj | 文字列または FxOperator |
接続する FxOperator のオブジェクト ポインタまたはオブジェクト名。 デフォルト値: 現在選択されている値 |
Interactive | Boolean |
True に設定すると、レンダリングを開始するときに確認のダイアログ ボックスが表示されます。 デフォルト値: False |
' This example creates an FxTree, two FxOperators, connects ' the operators, and then renders them out. set oTree = CreateFxTree() set oFxOp1 = AddFxOp( oTree, "File Input" ) set oFxOp2 = AddFxOp( oTree, "File Output" ) ConnectFxOp oFxOp1, oFxOp2, "1" ' This explicitly sets the Interaction flag to False (the ' equivalent of "RenderFxOp oFxOp2") RenderFxOp oFxOp2, False |