ジャンプ先: 概要. 戻り値. キーワード. 関連. フラグ. MEL 例.
containerBind [-allNames] [-bindingSet string] [-bindingSetConditions] [-bindingSetList] [-force] [-preview]
containerBind は、取り消し可能、照会可能、および編集可能です。
コンテナに対して自動バインド操作を行うコンテナ コマンドに付属するアクセサリ コマンドです。コンテナのパブリッシュ済みインタフェースは、接続されているコンテナ テンプレートに bindingSet を使用することでバインドできます。
なし
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
bind, container
container, containerProxy, containerPublish, containerTemplate
allNames, bindingSet, bindingSetConditions, bindingSetList, force, preview
フラグはコマンドの作成モードで表示できます
|
フラグはコマンドの編集モードで表示できます
|
フラグはコマンドの照会モードで表示できます
|
コマンド内でフラグを複数回使用できます。
|
// query the template binding sets available for this container
//
containerBind -query -bindingSetList container1;
// attempt to bind published names on the container
// using matching information in the bindingSet specified.
// By default only unbound names are considered.
//
containerBind -bindingSet "MayaBindings" container1;
// Attempt to bind all published names on the container
// using matching information in the bindingSet specified.
// Previously bound names will only be re-bound if the bindingSet
// produces an appropriate match.
//
containerBind -bindingSet "MayaBindings" -allNames container1;
// Forcibly re-bind all published names on the container
// using matching information in the bindingSet specified.
// All previously bound names will be unbound and will only
// be re-bound if the binding set produces an appropriate match.
//
containerBind -bindingSet "MayaBindings" -force -allNames container1;
// preview what the results of a binding operation would be, but do
// not actually perform it.
containerBind -preview -bindingSet "MayaBindings" -force -all container1;