|
Hi,
I'm looking for a way to dynamically create a new Data property or an Object property.
for example what I want is something like this
def createDataProperty(newProperty):
class newProperty(DataProperty):
range = [str]
pass
I want a new data property by whatever the name I pass to "newProperty" variable.
Thanks.
|