ジャンプ先: 概要. 戻り値.
キーワード. 関連項目.
フラグ. MEL 例.
containerView [-itemInfo string] [-itemList] [-viewDescription] [-viewLabel] [-viewList] [-viewName] string
containerView は 「元に戻す」が不可能、「照会」が可能、「編集」が可能 です。
コンテナ ビューは、特定のコンテナのパブリッシュされたアトリビュートのレイアウト情報を定義します。コンテナ
ビューは、ビルトインのビューのセットから選択するか、コネクトされたコンテナ テンプレート上で定義することができます。
このコマンドは、コンテナ ノードのビュー関連情報を照会します。 このコマンドが返す情報は、照会時にコンテナ
ノード上で実行されているビュー関連設定(コンテナのビュー モード、テンプレート名、ビュー名のアトリビュートなど)に基づきます。
なし
戻り値の型は照会モードでは照会フラグが基になります。
container, view
container, containerTemplate
itemInfo, itemList, viewDescription, viewLabel, viewList, viewName
: コマンドの作成モードで使用可能なフラグ |
: コマンドの編集モードで使用可能なフラグ |
: コマンドの照会モードで使用可能なフラグ |
: 1 つのコマンドで複数回使用可能なフラグ |
// 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 //