cmdScrollFieldExecuter [-appendText string] [-autoCloseBraces boolean] [-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
|
|||
|
||||
-autoCloseBraces(-acb)
|
boolean
|
|||
|
フラグはコマンドの作成モードで表示できます | フラグはコマンドの編集モードで表示できます |
フラグはコマンドの照会モードで表示できます | コマンド内でフラグを複数回使用できます。 |
// 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;