ジャンプ先: 概要. 戻り値. フラグ. MEL 例.
radioCollection [-collectionItemArray] [-defineTemplate string] [-exists] [-global boolean] [-numberOfCollectionItems] [-parent string] [-select string] [-useTemplate string]
[string]
radioCollection は、取り消し可能、照会可能、および編集可能です。
ラジオ ボタン コレクションを作成します。-p/parent フラグで親を指定しない場合、現在 既定のレイアウトがコレクションの親になります。クラスタはレイアウトの子なので、レイアウトが削除されるとクラスタもいっしょに削除されます。-gl/global フラグを使用しない場合は、コレクションを複数のウィンドウにスパンさせることもできます。この場合、コレクションには親が含まれず、必要なくなった際に deleteUI コマンドでコレクションを明確に削除する必要があります。
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
collectionItemArray, defineTemplate, exists, global, numberOfCollectionItems, parent, select, useTemplate
フラグはコマンドの作成モードで表示できます
|
フラグはコマンドの編集モードで表示できます
|
フラグはコマンドの照会モードで表示できます
|
コマンド内でフラグを複数回使用できます。
|
window;
columnLayout -adjustableColumn true -rowSpacing 10;
frameLayout -label "Colors";
columnLayout;
string $collection1 = `radioCollection`;
string $rb1, $rb2, $rb3;
$rb1 = `radioButton -label "Red"`;
$rb2 = `radioButton -label "Blue"`;
$rb3 = `radioButton -label "Green"`;
setParent ..; setParent ..;
frameLayout -label "Position";
columnLayout;
string $collection2 = `radioCollection`;
string $rb4, $rb5, $rb6;
$rb4 = `radioButton -label "Top"`;
$rb5 = `radioButton -label "Middle"`;
$rb6 = `radioButton -label "Bottom"`;
setParent ..; setParent ..;
radioCollection -edit -select $rb2 $collection1;
radioCollection -edit -select $rb6 $collection2;
showWindow;