移動先: 概要 戻り値 フラグ. MEL 例.
deleteUI [-collection] [-control] [-editor] [-layout] [-menu] [-menuItem] [-panel] [-panelConfig] [-radioMenuItemCollection] [-toolContext] [-uiTemplate] [-window]
string [string...]
deleteUI は 「元に戻す」が可能、「照会」が不可能、「編集」が不可能 です。
ウィンドウやコントロールなどの UI オブジェクトが削除されます。レイアウトやウィンドウが削除されると、その子もすべて削除されます。フラグを使用する場合は、削除するすべてのオブジェクトが特定タイプである必要があります。
このコマンドの編集と照会はできません。
注:
タイプ フラグを使用し、名前が同じでも種類が異なるオブジェクトを明確にしてください。
なし
collection, control, editor, layout, menu, menuItem, panel, panelConfig, radioMenuItemCollection, toolContext, uiTemplate, window
: コマンドの作成モードで使用可能なフラグ
|
: コマンドの編集モードで使用可能なフラグ
|
: コマンドの照会モードで使用可能なフラグ
|
: 1 つのコマンドで複数回使用可能なフラグ
|
// Example 1.
//
// Create a simple window and then delete it and all of its children
// with one 'deleteUI -window' command.
//
string $window = `window`;
paneLayout;
button;
showWindow $window;
deleteUI -window $window;
// Example 2.
//
// Create a window with a number of buttons and delete a few of the
// buttons with the 'deleteUI -control' command.
//
string $window = `window`;
columnLayout;
string $b1, $b2, $b3;
button; button; button;
$b1 = `button`;
$b2 = `button`;
$b3 = `button`;
showWindow $window;
deleteUI -control $b1 $b2 $b3;