ジャンプ先: 概要. 戻り値. 関連. フラグ. 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
モニターの除去を指定します。

フラグはコマンドの作成モードで表示できます フラグはコマンドの編集モードで表示できます
フラグはコマンドの照会モードで表示できます コマンド内でフラグを複数回使用できます。

MEL 例

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