移動先: 概要 戻り値 関連項目. フラグ. MEL 例.

概要

polySelectConstraintMonitor [-changeCommand string string] [-create] [-delete] string

polySelectConstraintMonitor は 「元に戻す」が可能、「照会」が不可能「編集」が不可能 です。

ウィンドウを管理し、ポリゴンのセレクション コンストレインのパラメータを表示、編集します。

戻り値

なし

関連項目

polyInstallAction, polyListComponentConversion, polySelectConstraint

フラグ

changeCommand, create, delete
ロング ネーム(ショート ネーム) 引数型 プロパティ
-changeCommand(-cc) string string create
ウィンドウをリフレッシュする MEL コールバックを指定します。最初の引数がコールバック、2 番目がウィンドウ名です。
-create(-c) create
モニターの作成を指定します。
-delete(-d) create
モニターの削除を指定します。

: コマンドの作成モードで使用可能なフラグ : コマンドの編集モードで使用可能なフラグ
: コマンドの照会モードで使用可能なフラグ : 1 つのコマンドで複数回使用可能なフラグ

MEL 例

// create Monitor:
polySelectConstraintMonitor -create;

// set up a callback for when the constraints are changed:
polySelectConstraintMonitor -changeCommand "polygonConstraintUpdate" $whichPanel;

// delete Monitor:
polySelectConstraintMonitor -delete;