Hi, I want to modify with a period script the value of a property in a template that I have defined.
How to do this?
I think that starting with a code as the following:
window = system.gui.getWindow("Win")
components = window.getRootContainer().getComponents()
for c in components:
#determine if a component is a template repeater
#loops for all the templates contained in the repeater
#access to the properties of the specific template object and modify them
I should do something like the things in the comments.
Otherwise, I would access the Template Parameter dataset to modify the properties from there, but even in this case I don’t know how.
In general, there is a reference (like Javadoc, doxygen, or similar) to know which properties/methods I can use for a specific component?
Thanks