parmClipboardContents()
→ tuple of dictionaries
Returns a tuple of dictionaries, one per copied hou.Parm. Each dictionary has the following keys.
path
The path of hou.Parm parameter when it was copied.
value
The evaluated value of the parameter when it was copied as a string.
expression
The expression of the parameter when it was copied as a string.
expressionLanguage
The expression language of the parameter when it was copied.
This is a string. To convert to a hou.exprLanguage
object, use getattr(hou.exprLanguage, expr_language_str)
.
See also |