ジャンプ先: 概要. 戻り値.
キーワード. 関連項目.
フラグ. Python 例.
containerView(string, [itemInfo=string], [itemList=boolean], [viewDescription=boolean],
[viewLabel=boolean], [viewList=boolean], [viewName=boolean])
注意:
オブジェクト名や引数を表す文字列はカンマで区切ります。これは概要には示されていません。
containerView は 「元に戻す」が不可能、「照会」が可能、「編集」が可能 です。
コンテナ ビューは、特定のコンテナのパブリッシュされたアトリビュートのレイアウト情報を定義します。コンテナ
ビューは、ビルトインのビューのセットから選択するか、コネクトされたコンテナ テンプレート上で定義することができます。
このコマンドは、コンテナ ノードのビュー関連情報を照会します。 このコマンドが返す情報は、照会時にコンテナ
ノード上で実行されているビュー関連設定(コンテナのビュー モード、テンプレート名、ビュー名のアトリビュートなど)に基づきます。
なし
戻り値の型は照会モードでは照会フラグが基になります。
container, view
container, containerTemplate
itemInfo, itemList, viewDescription, viewLabel, viewList, viewName
: コマンドの作成モードで使用可能なフラグ |
: コマンドの編集モードで使用可能なフラグ |
: コマンドの照会モードで使用可能なフラグ |
: タプルまたはリストとして渡された複数の引数を持てるフラグ |
import maya.cmds as cmds
# Obtain a list of all available views for container1
#
cmds.containerView ( 'container1', query=True, viewList=True);
# Result: [u'Animation', u'Rendering'] #
#
# 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.
cmds.containerView ( 'container1', itemList=True, itemInfo="itemName", query=True)
# Result: [u'RenderSetup', u'color', u'intensity', u'Transform', u'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.
cmds.containerView ( 'container1', itemList=True, itemInfo="itemIsGroup:itemLabel", query=True)
# Result: [u'1', u'RenderSetup', u'0', u'Color', u'0', u'Intensity', u'1', u'Transform', u'0', u'Rotate Y'] #