ジャンプ先: 概要. 戻り値. キーワード. 関連. フラグ. MEL 例.
containerView [-itemInfo string] [-itemList] [-viewDescription] [-viewLabel] [-viewList] [-viewName string]
containerView は、取り消し不可能、照会可能、および編集可能です。
コンテナ ビューは、特定のコンテナのパブリッシュされたアトリビュートのレイアウト情報を定義します。コンテナ ビューは、ビルトインのビューのセットから選択するか、接続されたコンテナ テンプレート上で定義することができます。このコマンドは、コンテナ ノードのビュー関連情報を照会します。このコマンドが返す情報は、照会時にコンテナ ノード上で実行されているビュー関連設定(コンテナのビュー モード、テンプレート名、ビュー名のアトリビュートなど)に基づきます。
なし
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
container, view
container, containerTemplate
itemInfo, itemList, viewDescription, viewLabel, viewList, viewName
フラグはコマンドの作成モードで表示できます
|
フラグはコマンドの編集モードで表示できます
|
フラグはコマンドの照会モードで表示できます
|
コマンド内でフラグを複数回使用できます。
|
// Obtain a list of all available views for container1
//
containerView -viewList -query container1;
// Result: Rendering Animation //
//
// Get a list of view items in the current view for container1
// In this example the list returned will include only the name for
// each item in the view.
containerView -itemList -itemInfo "itemName" -query container1;
// Result: RenderSetup color intensity Transform rotateY //
//
// Get a list of view items.
// In this query the list returned will include the group boolean and label
// for each item in the view.
containerView -itemList -itemInfo "itemIsGroup:itemLabel" -query container1;
// Result: 1 Render Setup 0 Color 0 Intensity 1 Transform 0 Rotate Y //