ジャンプ先: 概要. 戻り値. フラグ. Python 例.
cmdScrollFieldExecuter([appendText=string], [autoCloseBraces=boolean], [clear=boolean], [commandCompletion=boolean], [copySelection=boolean], [currentLine=uint], [cutSelection=boolean], [execute=boolean], [executeAll=boolean], [filterKeyPress=script], [hasFocus=boolean], [hasSelection=boolean], [insertText=string], [load=boolean], [loadContents=string], [numberOfLines=uint], [objectPathCompletion=boolean], [pasteSelection=boolean], [redo=boolean], [removeStoredContents=string], [replaceAll=[string, string]], [saveSelection=string], [saveSelectionToShelf=boolean], [searchAndSelect=boolean], [searchDown=boolean], [searchMatchCase=boolean], [searchString=string], [searchWraps=boolean], [select=[uint, uint]], [selectAll=boolean], [selectedText=boolean], [showLineNumbers=boolean], [showTooltipHelp=boolean], [source=boolean], [sourceType=string], [spacesPerTab=uint], [storeContents=string], [tabsForIndent=boolean], [text=string], [textLength=boolean], [undo=boolean])
注: オブジェクトの名前と引数を表す文字列は、カンマで区切る必要があります。これはシノプシスに示されていません。
cmdScrollFieldExecuter は、取り消し可能、照会可能、および 編集可能 です。
Maya に対してスクリプト コマンドを発行するために使用するスクリプト エディタ エクゼキュータ コントロールです。string | エクゼキュータ コントロールの名前 |
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||
---|---|---|---|---|
load(ld)
|
boolean
|
|||
|
||||
source(src)
|
boolean
|
|||
|
||||
saveSelection(sv)
|
string
|
|||
|
||||
saveSelectionToShelf(svs)
|
boolean
|
|||
|
||||
selectAll(sla)
|
boolean
|
|||
|
||||
select(sl)
|
[uint, uint]
|
|||
|
||||
hasSelection(hsl)
|
boolean
|
|||
|
||||
selectedText(slt)
|
boolean
|
|||
|
||||
clear(clr)
|
boolean
|
|||
|
||||
text(t)
|
string
|
|||
|
||||
textLength(tl)
|
boolean
|
|||
|
||||
cutSelection(ct)
|
boolean
|
|||
|
||||
copySelection(cp)
|
boolean
|
|||
|
||||
pasteSelection(pst)
|
boolean
|
|||
|
||||
hasFocus(hf)
|
boolean
|
|||
|
||||
undo(ud)
|
boolean
|
|||
|
||||
redo(rd)
|
boolean
|
|||
|
||||
execute(exc)
|
boolean
|
|||
|
||||
executeAll(exa)
|
boolean
|
|||
|
||||
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)
|
boolean
|
|||
|
||||
replaceAll(rpa)
|
[string, string]
|
|||
|
||||
currentLine(cl)
|
uint
|
|||
|
||||
numberOfLines(nl)
|
uint
|
|||
|
||||
spacesPerTab(spt)
|
uint
|
|||
|
||||
filterKeyPress(fkp)
|
script
|
|||
|
||||
tabsForIndent(tfi)
|
boolean
|
|||
|
||||
autoCloseBraces(acb)
|
boolean
|
|||
|
フラグはコマンドの作成モードで表示できます | フラグはコマンドの編集モードで表示できます |
フラグはコマンドの照会モードで表示できます | フラグに複数の引数を指定し、タプルまたはリストとして渡すことができます。 |
import maya.cmds as cmds # this will create a tiny window with a Mel command executer. cmds.window() cmds.columnLayout() cmds.cmdScrollFieldExecuter(width=200, height=100) cmds.showWindow() # this will create a tiny window with a Python command executer. cmds.window() cmds.columnLayout() cmds.cmdScrollFieldExecuter(width=200, height=100, sourceType="python") cmds.showWindow()