Answers for "pymxs naming nodes"

0

pymxs naming nodes

import pymxs
mxs = pymxs.runtime
thing = mxs.getCurrentSelection()[0]
thing.name = mxs.name("FooBar")
#or
thing = mxs.getCurrentSelection()
thing[0].name = mxs.name("FooBar")
Posted by: Guest on April-22-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language