cmdScrollFieldExecuter [-appendText string] [-clear] [-commandCompletion boolean]
[-copySelection] [-currentLine uint] [-cutSelection] [-execute] [-executeAll] [-filterKeyPress script] [-hasFocus] [-hasSelection] [-insertText string] [-load] [-loadContents string] [-numberOfLines uint] [-objectPathCompletion
boolean] [-pasteSelection]
[-redo] [-removeStoredContents string]
[-replaceAll string string]
[-saveSelection string]
[-saveSelectionToShelf]
[-searchAndSelect] [-searchDown boolean] [-searchMatchCase boolean]
[-searchString string]
[-searchWraps boolean]
[-select uint uint] [-selectAll] [-selectedText] [-showLineNumbers boolean]
[-showTooltipHelp
boolean] [-source] [-sourceType string] [-spacesPerTab uint] [-storeContents string] [-tabsForIndent boolean] [-text string] [-textLength] [-undo]
cmdScrollFieldExecuter は 「元に戻す」が可能、「照会」が可能、「編集」が可能 です。
Maya に対してスクリプト コマンドを発行するために使用するスクリプト エディタ エクゼキュータ コントロールです。string | エクゼキュータ コントロールの名前 |
戻り値の型は照会モードでは照会フラグが基になります。
ロング ネーム(ショート ネーム) | 引数型 | プロパティ | ||
---|---|---|---|---|
-load(-ld) |
||||
|
||||
-source(-src) |
||||
|
||||
-saveSelection(-sv) |
string |
|||
|
||||
-saveSelectionToShelf(-svs) |
||||
|
||||
-selectAll(-sla) |
||||
|
||||
-select(-sl) |
uint uint |
|||
|
||||
-hasSelection(-hsl) |
||||
|
||||
-selectedText(-slt) |
||||
|
||||
-clear(-clr) |
||||
|
||||
-text(-t) |
string |
|||
|
||||
-textLength(-tl) |
||||
|
||||
-cutSelection(-ct) |
||||
|
||||
-copySelection(-cp) |
||||
|
||||
-pasteSelection(-pst) |
||||
|
||||
-hasFocus(-hf) |
||||
|
||||
-undo(-ud) |
||||
|
||||
-redo(-rd) |
||||
|
||||
-execute(-exc) |
||||
|
||||
-executeAll(-exa) |
||||
|
||||
-storeContents(-stc) |
string |
|||
|
||||
-loadContents(-ldc) |
string |
|||
|
||||
-removeStoredContents(-rsc) |
string |
|||
|
||||
-appendText(-at) |
string |
|||
|
||||
-insertText(-it) |
string |
|||
|
||||
-sourceType(-st) |
string |
|||
|
||||
-showLineNumbers(-sln) |
boolean |
|||
|
||||
-commandCompletion(-cco) |
boolean |
|||
|
||||
-objectPathCompletion(-opc) |
boolean |
|||
|
||||
-showTooltipHelp(-sth) |
boolean |
|||
|
||||
-searchDown(-sd) |
boolean |
|||
|
||||
-searchMatchCase(-smc) |
boolean |
|||
|
||||
-searchWraps(-sw) |
boolean |
|||
|
||||
-searchString(-ss) |
string |
|||
|
||||
-searchAndSelect(-sas) |
||||
|
||||
-replaceAll(-rpa) |
string string |
|||
|
||||
-currentLine(-cl) |
uint |
|||
|
||||
-numberOfLines(-nl) |
uint |
|||
|
||||
-spacesPerTab(-spt) |
uint |
|||
|
||||
-filterKeyPress(-fkp) |
script |
|||
|
||||
-tabsForIndent(-tfi) |
boolean |
|||
|
: コマンドの作成モードで使用可能なフラグ | : コマンドの編集モードで使用可能なフラグ |
: コマンドの照会モードで使用可能なフラグ | : 1 つのコマンドで複数回使用可能なフラグ |
// this will create a tiny window with a Mel command executer. window; columnLayout; cmdScrollFieldExecuter -width 200 -height 100; showWindow; // this will create a tiny window with a Python command executer. window; columnLayout; cmdScrollFieldExecuter -width 200 -height 100 -sourceType python; showWindow;