Go to: Synopsis. Flags. Return value. Python examples.
toolPropertyWindow([edit=boolean], [field=string], [helpButton=string], [icon=string], [inMainWindow=boolean], [location=string], [noviceMode=boolean], [query=boolean], [resetButton=string], [selectCommand=string], [showCommand=string])
Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.
toolPropertyWindow is undoable, queryable, and editable.
End users should only call this command as 1. a query (in the
custom tool property sheet code) or 2. with no arguments
to create the default tool property sheet. The more complex
uses of it are internal.
edit, field, helpButton, icon, inMainWindow, location, noviceMode, query, resetButton, selectCommand, showCommand
Flag can appear in Create mode of command
|
Flag can appear in Edit mode of command
|
Flag can appear in Query mode of command
|
Flag can have multiple arguments, passed either as a tuple or a list.
|
depends on query.
import maya.cmds as cmds
cmds.toolPropertyWindow()
pictureObject = cmds.toolPropertyWindow(q=True, icon=True)
Return to Autodesk Index